@appchy/jarvis 0.1.79 → 0.1.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin.js CHANGED
@@ -10110,8 +10110,8 @@ import { createRequire as createRequire2 } from "module";
10110
10110
  var _require = createRequire2(import.meta.url);
10111
10111
  var VERSION2 = _require("../package.json").version ?? "0.0.0";
10112
10112
  var IS_DEV = String(_require("../package.json").name ?? "").endsWith("-dev");
10113
- var SHA = "8992daf";
10114
- var BUILT = "2026-09-10";
10113
+ var SHA = "959c0ae";
10114
+ var BUILT = "2026-09-11";
10115
10115
  var BUILD = SHA ?? "source";
10116
10116
  var BUILD_LABEL = `${SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`}${IS_DEV ? " \u2014 development build" : ""}`;
10117
10117
 
@@ -12186,7 +12186,10 @@ var TYPES = {
12186
12186
  ".svg": "image/svg+xml"
12187
12187
  };
12188
12188
  function named(html, repo) {
12189
- return html.replace("<title>Jarvis</title>", `<title>${basename2(repo).replace(/[<>]/g, "")} \xB7 Jarvis</title>`);
12189
+ return html.replace(
12190
+ "<title>Jarvis</title>",
12191
+ `<title>${basename2(repo).replace(/[<>]/g, "")} \xB7 Jarvis</title>`
12192
+ );
12190
12193
  }
12191
12194
  function context() {
12192
12195
  return { requestId: `ui-${Date.now().toString(36)}`, userId: "local" };
@@ -12379,7 +12382,11 @@ async function watchPage(root) {
12379
12382
  const before = await changedAt(join10(dir, BUNDLE));
12380
12383
  const build2 = spawn3(
12381
12384
  tool(root, "tsup") ?? "tsup",
12382
- ["--config", "tsup.ui.config.ts", ...WATCHED.flatMap((where) => ["--watch", join10(root, where)])],
12385
+ [
12386
+ "--config",
12387
+ "tsup.ui.config.ts",
12388
+ ...WATCHED.flatMap((where) => ["--watch", join10(root, where)])
12389
+ ],
12383
12390
  {
12384
12391
  stdio: ["ignore", "ignore", "inherit"],
12385
12392
  cwd: join10(root, "apps", "cli")
@@ -12403,7 +12410,9 @@ async function landed(file, before) {
12403
12410
  if (await changedAt(file) > before) return;
12404
12411
  await new Promise((done) => setTimeout(done, 100));
12405
12412
  }
12406
- throw new Error(`the page did not build within ${PATIENCE2 / 1e3}s \u2014 run \`pnpm build\` there to see why`);
12413
+ throw new Error(
12414
+ `the page did not build within ${PATIENCE2 / 1e3}s \u2014 run \`pnpm build\` there to see why`
12415
+ );
12407
12416
  }
12408
12417
  async function changedAt(file) {
12409
12418
  try {