@schoolai/shipyard 3.1.1 → 3.2.0-rc.20260415.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-ERKQ6CBC.js → chunk-7WMHXVZ5.js} +2 -2
- package/dist/{chunk-ERKQ6CBC.js.map → chunk-7WMHXVZ5.js.map} +1 -1
- package/dist/{chunk-WHHNOYQE.js → chunk-JAR2IPWI.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{login-VMDYGKB7.js → login-R24HAB3T.js} +3 -3
- package/dist/{serve-HDRZ2CU6.js → serve-ROGOK56J.js} +467 -219
- package/dist/serve-ROGOK56J.js.map +1 -0
- package/dist/{start-63XQAT6J.js → start-Z5LEWLLS.js} +4 -4
- package/package.json +1 -1
- package/dist/serve-HDRZ2CU6.js.map +0 -1
- /package/dist/{chunk-WHHNOYQE.js.map → chunk-JAR2IPWI.js.map} +0 -0
- /package/dist/{login-VMDYGKB7.js.map → login-R24HAB3T.js.map} +0 -0
- /package/dist/{start-63XQAT6J.js.map → start-Z5LEWLLS.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
DevicePollResponseSchema,
|
|
10
10
|
DeviceStartResponseSchema,
|
|
11
11
|
ROUTES
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-7WMHXVZ5.js";
|
|
13
13
|
import {
|
|
14
14
|
getConfigPath,
|
|
15
15
|
loadAuthToken,
|
|
@@ -217,4 +217,4 @@ export {
|
|
|
217
217
|
ensureAuthenticated,
|
|
218
218
|
loginCommand
|
|
219
219
|
};
|
|
220
|
-
//# sourceMappingURL=chunk-
|
|
220
|
+
//# sourceMappingURL=chunk-JAR2IPWI.js.map
|
package/dist/index.js
CHANGED
|
@@ -95,7 +95,7 @@ async function loadAuthFromConfig(env) {
|
|
|
95
95
|
async function handleSubcommand() {
|
|
96
96
|
const subcommand = process.argv[2];
|
|
97
97
|
if (subcommand === "login") {
|
|
98
|
-
const { loginCommand } = await import("./login-
|
|
98
|
+
const { loginCommand } = await import("./login-R24HAB3T.js");
|
|
99
99
|
const hasCheck = process.argv.includes("--check");
|
|
100
100
|
await loginCommand({ check: hasCheck });
|
|
101
101
|
return true;
|
|
@@ -106,7 +106,7 @@ async function handleSubcommand() {
|
|
|
106
106
|
return true;
|
|
107
107
|
}
|
|
108
108
|
if (subcommand === "start") {
|
|
109
|
-
const { startCommand } = await import("./start-
|
|
109
|
+
const { startCommand } = await import("./start-Z5LEWLLS.js");
|
|
110
110
|
await startCommand();
|
|
111
111
|
return true;
|
|
112
112
|
}
|
|
@@ -118,7 +118,7 @@ async function main() {
|
|
|
118
118
|
const args = parseCliArgs();
|
|
119
119
|
if (args.serve) {
|
|
120
120
|
await loadAuthFromConfig(env);
|
|
121
|
-
const { serve } = await import("./serve-
|
|
121
|
+
const { serve } = await import("./serve-ROGOK56J.js");
|
|
122
122
|
return serve({ isDev: env.SHIPYARD_DEV });
|
|
123
123
|
}
|
|
124
124
|
logger.error("Use `shipyard start` to run the daemon. Use --help for usage.");
|
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
ensureAuthenticated,
|
|
4
4
|
getSignalingUrl,
|
|
5
5
|
loginCommand
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-JAR2IPWI.js";
|
|
7
7
|
import "./chunk-YOMKRHVO.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-7WMHXVZ5.js";
|
|
9
9
|
import "./chunk-IHSXN66C.js";
|
|
10
10
|
import "./chunk-3UYLOJ6E.js";
|
|
11
11
|
import "./chunk-CF336H24.js";
|
|
@@ -15,4 +15,4 @@ export {
|
|
|
15
15
|
getSignalingUrl,
|
|
16
16
|
loginCommand
|
|
17
17
|
};
|
|
18
|
-
//# sourceMappingURL=login-
|
|
18
|
+
//# sourceMappingURL=login-R24HAB3T.js.map
|