@schoolai/shipyard 3.13.0 → 3.14.0-rc.20260616.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.
- package/dist/{chunk-7MVFHLYV.js → chunk-3KE2VDKA.js} +2 -2
- package/dist/{chunk-MR6HRO7R.js → chunk-WGS7ZW6N.js} +3 -3
- package/dist/electron-utility.js +2 -2
- package/dist/index.js +2 -2
- package/dist/{serve-RW42I4NC.js → serve-25I4ML7R.js} +1578 -1210
- package/dist/{serve-RW42I4NC.js.map → serve-25I4ML7R.js.map} +1 -1
- package/dist/{start-7GIHIERV.js → start-O2DXLW23.js} +4 -4
- package/package.json +1 -1
- /package/dist/{chunk-7MVFHLYV.js.map → chunk-3KE2VDKA.js.map} +0 -0
- /package/dist/{chunk-MR6HRO7R.js.map → chunk-WGS7ZW6N.js.map} +0 -0
- /package/dist/{start-7GIHIERV.js.map → start-O2DXLW23.js.map} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
getDaemonVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-WGS7ZW6N.js";
|
|
5
5
|
import {
|
|
6
6
|
WorkerCommandCodec,
|
|
7
7
|
WorkerReplyCodec
|
|
@@ -1094,4 +1094,4 @@ export {
|
|
|
1094
1094
|
shutdownFileWatcherGuard,
|
|
1095
1095
|
guardedSubscribe
|
|
1096
1096
|
};
|
|
1097
|
-
//# sourceMappingURL=chunk-
|
|
1097
|
+
//# sourceMappingURL=chunk-3KE2VDKA.js.map
|
|
@@ -18,8 +18,8 @@ function getDaemonVersion() {
|
|
|
18
18
|
return cached;
|
|
19
19
|
}
|
|
20
20
|
function readDaemonVersion() {
|
|
21
|
-
if ("3.
|
|
22
|
-
return "3.
|
|
21
|
+
if ("3.14.0".length > 0) {
|
|
22
|
+
return "3.14.0";
|
|
23
23
|
}
|
|
24
24
|
try {
|
|
25
25
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
@@ -48,4 +48,4 @@ function readDaemonVersion() {
|
|
|
48
48
|
export {
|
|
49
49
|
getDaemonVersion
|
|
50
50
|
};
|
|
51
|
-
//# sourceMappingURL=chunk-
|
|
51
|
+
//# sourceMappingURL=chunk-WGS7ZW6N.js.map
|
package/dist/electron-utility.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
getDaemonVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-WGS7ZW6N.js";
|
|
5
5
|
import {
|
|
6
6
|
enableNativeCrashReports
|
|
7
7
|
} from "./chunk-TSJOSKN3.js";
|
|
@@ -71,7 +71,7 @@ async function main() {
|
|
|
71
71
|
await loadAuthFromConfig(env);
|
|
72
72
|
crumb("post-auth-load");
|
|
73
73
|
crumb("pre-serve-import");
|
|
74
|
-
const { serve } = await import("./serve-
|
|
74
|
+
const { serve } = await import("./serve-25I4ML7R.js");
|
|
75
75
|
crumb("post-serve-import");
|
|
76
76
|
const portQueue = [];
|
|
77
77
|
let acceptor = null;
|
package/dist/index.js
CHANGED
|
@@ -124,7 +124,7 @@ async function handleSubcommand() {
|
|
|
124
124
|
return true;
|
|
125
125
|
}
|
|
126
126
|
if (subcommand === "start") {
|
|
127
|
-
const { startCommand } = await import("./start-
|
|
127
|
+
const { startCommand } = await import("./start-O2DXLW23.js");
|
|
128
128
|
await startCommand();
|
|
129
129
|
return true;
|
|
130
130
|
}
|
|
@@ -146,7 +146,7 @@ async function main() {
|
|
|
146
146
|
const args = parseCliArgs();
|
|
147
147
|
if (args.serve) {
|
|
148
148
|
await loadAuthFromConfig(env);
|
|
149
|
-
const { serve } = await import("./serve-
|
|
149
|
+
const { serve } = await import("./serve-25I4ML7R.js");
|
|
150
150
|
return serve({ isDev: env.SHIPYARD_DEV });
|
|
151
151
|
}
|
|
152
152
|
logger.error("Use `shipyard start` to run the daemon. Use --help for usage.");
|