- Extract 4756 source files from cli.js.map (57MB) - Set up Bun build system with bun:bundle feature flag shim - Configure 90+ compile-time feature flags matching production defaults - Inject MACRO constants (VERSION, BUILD_TIME, etc.) - Create stubs for private packages (color-diff-napi, modifiers-napi, etc.) - Install all public dependencies via pnpm - Patch commander v14 to allow multi-char short flags (-d2e) - Build output: dist/cli.js (22MB), verified working
24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
const path = require("path");
|
|
|
|
if (process.platform !== "darwin") {
|
|
throw new Error("@ant/computer-use-swift is only available on macOS");
|
|
}
|
|
|
|
// COMPUTER_USE_SWIFT_NODE_PATH: escape hatch for bundlers. Bun's --compile
|
|
// embeds the .node as an asset, not in a node_modules tree — __dirname is the
|
|
// exe dir and ../prebuilds/ doesn't exist. The consuming build bakes this var
|
|
// to the embedded asset's path. Unset → normal node_modules layout.
|
|
//
|
|
// Four methods use `Task { @MainActor in ... }` (captureExcluding,
|
|
// captureRegion, apps.listInstalled, resolvePrepareCapture) which enqueue
|
|
// onto DispatchQueue.main. Electron drains that queue via CFRunLoop; libuv
|
|
// (Node/bun) does not — the promises hang. Consumers running under libuv
|
|
// must pump `_drainMainRunLoop` via setInterval while those promises are
|
|
// pending. Consumers under Electron don't need to (CFRunLoop drains
|
|
// automatically).
|
|
const native = require(
|
|
process.env.COMPUTER_USE_SWIFT_NODE_PATH ??
|
|
path.resolve(__dirname, "../prebuilds/computer_use.node"),
|
|
);
|
|
module.exports = native.computerUse;
|