cmux/node_modules/rolldown/dist/cli-setup.mjs
2026-01-29 17:36:26 -08:00

17 lines
No EOL
502 B
JavaScript

import { n as __toESM, t as require_binding } from "./shared/binding-QUhP-0wQ.mjs";
//#region src/cli/setup-index.ts
var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
let isWatchMode = false;
for (let i = 0; i < process.argv.length; i++) {
const arg = process.argv[i];
if (arg === "--watch" || arg === "-w") {
isWatchMode = true;
break;
}
}
if (isWatchMode) (0, import_binding.createTokioRuntime)(32);
else (0, import_binding.createTokioRuntime)(4);
//#endregion
export { };