Update app and tooling

This commit is contained in:
Lawrence Chen 2026-01-29 17:36:26 -08:00
parent 3046531bdd
commit e620ec7349
4950 changed files with 2975120 additions and 10 deletions

17
node_modules/rolldown/dist/cli-setup.mjs generated vendored Normal file
View file

@ -0,0 +1,17 @@
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 { };