@schoolai/shipyard 3.19.0 → 3.20.0

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.
Files changed (32) hide show
  1. package/dist/capability-detector-worker.js +4 -4
  2. package/dist/{chunk-KMMF5R3M.js → chunk-FMHVDAJK.js} +3 -3
  3. package/dist/{chunk-FASB7KFF.js → chunk-LYUR7G6B.js} +2 -2
  4. package/dist/{chunk-NRXFTDBH.js → chunk-MD32Y6U4.js} +2 -2
  5. package/dist/{chunk-LVQLRQKF.js → chunk-OBYRPZRA.js} +40 -10
  6. package/dist/chunk-OBYRPZRA.js.map +1 -0
  7. package/dist/{chunk-6TK5KO76.js → chunk-OC75AUKJ.js} +33 -5
  8. package/dist/chunk-OC75AUKJ.js.map +1 -0
  9. package/dist/{chunk-4XU7QHYE.js → chunk-QNEFPC4Y.js} +2 -2
  10. package/dist/{chunk-JEIJ4LIM.js → chunk-SECZGRK2.js} +3 -3
  11. package/dist/{chunk-JEIJ4LIM.js.map → chunk-SECZGRK2.js.map} +1 -1
  12. package/dist/{chunk-HD66ZG4O.js → chunk-TJ4TMMMB.js} +3 -3
  13. package/dist/chunk-TJ4TMMMB.js.map +1 -0
  14. package/dist/cursor-runner.js +3 -3
  15. package/dist/electron-utility.js +2 -2
  16. package/dist/index.js +4 -4
  17. package/dist/{login-RU3BXPEI.js → login-VNZ6AQDV.js} +3 -3
  18. package/dist/{plan-backfill-CKSC7OK3.js → plan-backfill-ZNL2YQP6.js} +4 -4
  19. package/dist/{serve-AA4FCUY6.js → serve-WG7HQAYG.js} +653 -202
  20. package/dist/{serve-AA4FCUY6.js.map → serve-WG7HQAYG.js.map} +1 -1
  21. package/dist/{start-RNGMBSQN.js → start-5VG7QWUR.js} +6 -6
  22. package/package.json +1 -1
  23. package/dist/chunk-6TK5KO76.js.map +0 -1
  24. package/dist/chunk-HD66ZG4O.js.map +0 -1
  25. package/dist/chunk-LVQLRQKF.js.map +0 -1
  26. /package/dist/{chunk-KMMF5R3M.js.map → chunk-FMHVDAJK.js.map} +0 -0
  27. /package/dist/{chunk-FASB7KFF.js.map → chunk-LYUR7G6B.js.map} +0 -0
  28. /package/dist/{chunk-NRXFTDBH.js.map → chunk-MD32Y6U4.js.map} +0 -0
  29. /package/dist/{chunk-4XU7QHYE.js.map → chunk-QNEFPC4Y.js.map} +0 -0
  30. /package/dist/{login-RU3BXPEI.js.map → login-VNZ6AQDV.js.map} +0 -0
  31. /package/dist/{plan-backfill-CKSC7OK3.js.map → plan-backfill-ZNL2YQP6.js.map} +0 -0
  32. /package/dist/{start-RNGMBSQN.js.map → start-5VG7QWUR.js.map} +0 -0
package/dist/index.js CHANGED
@@ -118,7 +118,7 @@ async function loadAuthFromConfig(env) {
118
118
  async function handleSubcommand() {
119
119
  const subcommand = process.argv[2];
120
120
  if (subcommand === "login") {
121
- const { loginCommand } = await import("./login-RU3BXPEI.js");
121
+ const { loginCommand } = await import("./login-VNZ6AQDV.js");
122
122
  const hasCheck = process.argv.includes("--check");
123
123
  await loginCommand({ check: hasCheck });
124
124
  return true;
@@ -129,7 +129,7 @@ async function handleSubcommand() {
129
129
  return true;
130
130
  }
131
131
  if (subcommand === "start") {
132
- const { startCommand } = await import("./start-RNGMBSQN.js");
132
+ const { startCommand } = await import("./start-5VG7QWUR.js");
133
133
  await startCommand();
134
134
  return true;
135
135
  }
@@ -139,7 +139,7 @@ async function handleSubcommand() {
139
139
  return true;
140
140
  }
141
141
  if (subcommand === "plan-backfill") {
142
- const { planBackfillCommand } = await import("./plan-backfill-CKSC7OK3.js");
142
+ const { planBackfillCommand } = await import("./plan-backfill-ZNL2YQP6.js");
143
143
  await planBackfillCommand();
144
144
  return true;
145
145
  }
@@ -151,7 +151,7 @@ async function main() {
151
151
  const args = parseCliArgs();
152
152
  if (args.serve) {
153
153
  await loadAuthFromConfig(env);
154
- const { serve } = await import("./serve-AA4FCUY6.js");
154
+ const { serve } = await import("./serve-WG7HQAYG.js");
155
155
  return serve({ isDev: env.SHIPYARD_DEV });
156
156
  }
157
157
  logger.error("Use `shipyard start` to run the daemon. Use --help for usage.");
@@ -3,10 +3,10 @@ import {
3
3
  ensureAuthenticated,
4
4
  getSignalingUrl,
5
5
  loginCommand
6
- } from "./chunk-NRXFTDBH.js";
6
+ } from "./chunk-MD32Y6U4.js";
7
7
  import "./chunk-ZHLJRR5O.js";
8
8
  import "./chunk-TFWDJCUJ.js";
9
- import "./chunk-HD66ZG4O.js";
9
+ import "./chunk-TJ4TMMMB.js";
10
10
  import "./chunk-EHQITHQX.js";
11
11
  import "./chunk-X53VIV2J.js";
12
12
  import "./chunk-UTL5PF43.js";
@@ -17,4 +17,4 @@ export {
17
17
  getSignalingUrl,
18
18
  loginCommand
19
19
  };
20
- //# sourceMappingURL=login-RU3BXPEI.js.map
20
+ //# sourceMappingURL=login-VNZ6AQDV.js.map
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  buildTaskStateStore,
4
4
  runPlanBackfill
5
- } from "./chunk-JEIJ4LIM.js";
5
+ } from "./chunk-SECZGRK2.js";
6
6
  import "./chunk-RR6V6SNM.js";
7
- import "./chunk-6TK5KO76.js";
8
- import "./chunk-HD66ZG4O.js";
7
+ import "./chunk-OC75AUKJ.js";
8
+ import "./chunk-TJ4TMMMB.js";
9
9
  import "./chunk-EHQITHQX.js";
10
10
  import "./chunk-X3MULCV5.js";
11
11
  import {
@@ -65,4 +65,4 @@ async function planBackfillCommand(argv = process.argv.slice(3)) {
65
65
  export {
66
66
  planBackfillCommand
67
67
  };
68
- //# sourceMappingURL=plan-backfill-CKSC7OK3.js.map
68
+ //# sourceMappingURL=plan-backfill-ZNL2YQP6.js.map