@dreamboard-games/cli 0.1.30-alpha.26 → 0.1.30-alpha.27
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/README.md +1 -1
- package/dist/agent-verifier/agent-workspace-verifier.mjs +2 -2
- package/dist/agent-verifier/{chunk-PLATMUJI.mjs → chunk-I3Y6EIBR.mjs} +3 -3
- package/dist/agent-verifier/{chunk-PLATMUJI.mjs.map → chunk-I3Y6EIBR.mjs.map} +1 -1
- package/dist/agent-verifier/{materialize-workspace-4R7U4P4F.mjs → materialize-workspace-SNEJBW62.mjs} +2 -2
- package/dist/agent-verifier/{static-scaffold-RJCOFEWT.mjs → static-scaffold-DX33NEY7.mjs} +2 -2
- package/dist/authoring-compatibility-internal.js +1 -1
- package/dist/{chunk-26IYAAMB.js → chunk-BOO4OFZR.js} +2 -2
- package/dist/{chunk-TG6TZMN2.js → chunk-LEUC3W2L.js} +3 -3
- package/dist/{chunk-TG6TZMN2.js.map → chunk-LEUC3W2L.js.map} +1 -1
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/internal.js +2 -2
- package/package.json +1 -1
- package/release/authoring-release-set.json +2 -2
- package/skills/dreamboard/SKILL.md +1 -1
- package/skills/dreamboard/references/cli.md +2 -3
- /package/dist/agent-verifier/{materialize-workspace-4R7U4P4F.mjs.map → materialize-workspace-SNEJBW62.mjs.map} +0 -0
- /package/dist/agent-verifier/{static-scaffold-RJCOFEWT.mjs.map → static-scaffold-DX33NEY7.mjs.map} +0 -0
- /package/dist/{chunk-26IYAAMB.js.map → chunk-BOO4OFZR.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -56,7 +56,7 @@ import {
|
|
|
56
56
|
titleFromSlug,
|
|
57
57
|
toDreamboardApiError,
|
|
58
58
|
waitForCompiledResultJobSdk
|
|
59
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-BOO4OFZR.js";
|
|
60
60
|
import {
|
|
61
61
|
applyWorkspaceCodegen,
|
|
62
62
|
collectLocalFiles,
|
|
@@ -94,7 +94,7 @@ import {
|
|
|
94
94
|
updateProjectLocalMaintainerRegistry,
|
|
95
95
|
updateProjectState,
|
|
96
96
|
writeSnapshot
|
|
97
|
-
} from "./chunk-
|
|
97
|
+
} from "./chunk-LEUC3W2L.js";
|
|
98
98
|
import {
|
|
99
99
|
clearCredentials,
|
|
100
100
|
getActiveCredentialBackendName,
|
|
@@ -5732,11 +5732,11 @@ function resolveRequestedRunner(value) {
|
|
|
5732
5732
|
if (value == null || value === "") {
|
|
5733
5733
|
return void 0;
|
|
5734
5734
|
}
|
|
5735
|
-
if (value === "reducer" || value === "remote"
|
|
5735
|
+
if (value === "reducer" || value === "remote") {
|
|
5736
5736
|
return value;
|
|
5737
5737
|
}
|
|
5738
5738
|
throw new Error(
|
|
5739
|
-
`Unsupported test runner '${String(value)}'. Expected one of reducer, remote
|
|
5739
|
+
`Unsupported test runner '${String(value)}'. Expected one of reducer, remote.`
|
|
5740
5740
|
);
|
|
5741
5741
|
}
|
|
5742
5742
|
function resolveTestCommandPlan(args) {
|
|
@@ -5746,14 +5746,14 @@ function resolveTestCommandPlan(args) {
|
|
|
5746
5746
|
if (runner === "remote" && !commit) {
|
|
5747
5747
|
throw new Error("dreamboard test --runner remote requires --commit <rev>.");
|
|
5748
5748
|
}
|
|
5749
|
-
if (commit && runner !== "remote"
|
|
5749
|
+
if (commit && runner !== "remote") {
|
|
5750
5750
|
throw new Error(
|
|
5751
|
-
"dreamboard test --commit is only valid with --runner remote
|
|
5751
|
+
"dreamboard test --commit is only valid with --runner remote."
|
|
5752
5752
|
);
|
|
5753
5753
|
}
|
|
5754
5754
|
if (updateSnapshots && (runner === "remote" || commit)) {
|
|
5755
5755
|
throw new Error(
|
|
5756
|
-
"dreamboard test --update-snapshots is only valid for current-worktree reducer
|
|
5756
|
+
"dreamboard test --update-snapshots is only valid for current-worktree reducer tests."
|
|
5757
5757
|
);
|
|
5758
5758
|
}
|
|
5759
5759
|
return {
|
|
@@ -5813,7 +5813,7 @@ async function resolveRemoteCommitCompiledResult(options) {
|
|
|
5813
5813
|
return compiledResult;
|
|
5814
5814
|
}
|
|
5815
5815
|
async function resolveReducerNativeRuntimeIdentity(options) {
|
|
5816
|
-
if (options.useRemoteRuntime || options.runner === "remote"
|
|
5816
|
+
if (options.useRemoteRuntime || options.runner === "remote") {
|
|
5817
5817
|
const latestCompiledResult = await resolveLatestCompiledResult(
|
|
5818
5818
|
options.projectRoot,
|
|
5819
5819
|
options.projectConfig
|
|
@@ -5883,7 +5883,7 @@ async function runTestCommand(args, deps = {}) {
|
|
|
5883
5883
|
return;
|
|
5884
5884
|
}
|
|
5885
5885
|
const { projectRoot, projectConfig, config } = await (deps.resolveProjectContext ?? resolveProjectContext)(parsedFlags, {
|
|
5886
|
-
requireAuth: useRemoteRuntime || plan.runner === "remote"
|
|
5886
|
+
requireAuth: useRemoteRuntime || plan.runner === "remote"
|
|
5887
5887
|
});
|
|
5888
5888
|
await (deps.assertPortableDependencies ?? assertReleaseEnvironmentPortableDependencies)({
|
|
5889
5889
|
projectRoot,
|
|
@@ -5951,8 +5951,8 @@ var runCommand3 = defineCommand({
|
|
|
5951
5951
|
},
|
|
5952
5952
|
runner: {
|
|
5953
5953
|
type: "string",
|
|
5954
|
-
valueHint: "reducer|remote
|
|
5955
|
-
description: "Scenario runner: reducer (in-process, default)
|
|
5954
|
+
valueHint: "reducer|remote",
|
|
5955
|
+
description: "Scenario runner: reducer (in-process, default) or remote (live sessions against the configured backend)."
|
|
5956
5956
|
},
|
|
5957
5957
|
commit: {
|
|
5958
5958
|
type: "string",
|
|
@@ -6327,7 +6327,7 @@ function runDreamboardCli(internalSubCommands = {}) {
|
|
|
6327
6327
|
const main = defineCommand({
|
|
6328
6328
|
meta: {
|
|
6329
6329
|
name: "dreamboard",
|
|
6330
|
-
version: "0.1.30-alpha.
|
|
6330
|
+
version: "0.1.30-alpha.27",
|
|
6331
6331
|
description: "Dreamboard CLI \u2014 game development platform"
|
|
6332
6332
|
},
|
|
6333
6333
|
subCommands
|