@dreamboard-games/cli 0.1.30-alpha.39 → 0.1.30-alpha.40
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/agent-verifier/agent-workspace-verifier.mjs +6 -6
- package/dist/agent-verifier/agent-workspace-verifier.mjs.map +1 -1
- package/dist/agent-verifier/{chunk-WLUEMKVV.mjs → chunk-KAA3B4DI.mjs} +4 -4
- package/dist/agent-verifier/{chunk-WLUEMKVV.mjs.map → chunk-KAA3B4DI.mjs.map} +1 -1
- package/dist/agent-verifier/{chunk-M6YNQZCC.mjs → chunk-LROY5SN2.mjs} +4 -33
- package/dist/agent-verifier/chunk-LROY5SN2.mjs.map +1 -0
- package/dist/agent-verifier/{materialize-workspace-RPWQ5PST.mjs → materialize-workspace-JBDL6LF4.mjs} +4 -5
- package/dist/agent-verifier/materialize-workspace-JBDL6LF4.mjs.map +1 -0
- package/dist/agent-verifier/{reducer-native-test-harness-UFMSNNDY.mjs → reducer-native-test-harness-XQUPIT5D.mjs} +20 -20
- package/dist/agent-verifier/reducer-native-test-harness-XQUPIT5D.mjs.map +1 -0
- package/dist/agent-verifier/{static-scaffold-4HXUM2S4.mjs → static-scaffold-U5DXE23S.mjs} +2 -2
- package/dist/authoring-compatibility-internal.js +1 -1
- package/dist/{chunk-IZ7N2NLZ.js → chunk-5IYJOVUA.js} +22 -32
- package/dist/chunk-5IYJOVUA.js.map +1 -0
- package/dist/{chunk-R6J3LAQY.js → chunk-USZAPMQ4.js} +8 -38
- package/dist/{chunk-R6J3LAQY.js.map → chunk-USZAPMQ4.js.map} +1 -1
- package/dist/index.js +12 -15
- package/dist/index.js.map +1 -1
- package/dist/internal.js +2 -2
- package/package.json +1 -1
- package/release/authoring-release-set.json +3 -3
- package/dist/agent-verifier/chunk-M6YNQZCC.mjs.map +0 -1
- package/dist/agent-verifier/materialize-workspace-RPWQ5PST.mjs.map +0 -1
- package/dist/agent-verifier/reducer-native-test-harness-UFMSNNDY.mjs.map +0 -1
- package/dist/chunk-IZ7N2NLZ.js.map +0 -1
- /package/dist/agent-verifier/{static-scaffold-4HXUM2S4.mjs.map → static-scaffold-U5DXE23S.mjs.map} +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
findProjectRoot,
|
|
4
4
|
loadProjectConfig
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-LROY5SN2.mjs";
|
|
6
6
|
import {
|
|
7
7
|
getStoredSession,
|
|
8
8
|
loadGlobalConfig,
|
|
@@ -2108,7 +2108,7 @@ Usage:
|
|
|
2108
2108
|
}
|
|
2109
2109
|
async function materializePreparedWorkspace(args) {
|
|
2110
2110
|
const inputPath = readRequiredOption(args, "--input");
|
|
2111
|
-
const { materializeWorkspaceProject } = await import("./materialize-workspace-
|
|
2111
|
+
const { materializeWorkspaceProject } = await import("./materialize-workspace-JBDL6LF4.mjs");
|
|
2112
2112
|
const input = JSON.parse(await readFile(inputPath, "utf8"));
|
|
2113
2113
|
await materializeWorkspaceProject({
|
|
2114
2114
|
...input,
|
|
@@ -2176,7 +2176,7 @@ async function runCloudLocalVerification(projectRoot, projectConfig, config) {
|
|
|
2176
2176
|
{ assertReducerContractPreflight },
|
|
2177
2177
|
{ getProjectLocalMaintainerRegistry }
|
|
2178
2178
|
] = await Promise.all([
|
|
2179
|
-
import("./static-scaffold-
|
|
2179
|
+
import("./static-scaffold-U5DXE23S.mjs"),
|
|
2180
2180
|
import("./local-files-OF4QFISU.mjs"),
|
|
2181
2181
|
import("./workspace-codegen-SPPVHURX.mjs"),
|
|
2182
2182
|
import("./workspace-dependencies-5HEEKZFP.mjs"),
|
|
@@ -2214,18 +2214,18 @@ async function runCloudLocalVerification(projectRoot, projectConfig, config) {
|
|
|
2214
2214
|
generateReducerNativeArtifacts,
|
|
2215
2215
|
isReducerNativeTestingWorkspace,
|
|
2216
2216
|
runReducerNativeScenarios
|
|
2217
|
-
} = await import("./reducer-native-test-harness-
|
|
2217
|
+
} = await import("./reducer-native-test-harness-XQUPIT5D.mjs");
|
|
2218
2218
|
if (await isReducerNativeTestingWorkspace(projectRoot)) {
|
|
2219
2219
|
const { bases } = await generateReducerNativeArtifacts({
|
|
2220
2220
|
projectRoot,
|
|
2221
|
-
|
|
2221
|
+
projectId: projectConfig.projectId,
|
|
2222
2222
|
compiledResultId: projectConfig.compile?.latestSuccessful?.resultId
|
|
2223
2223
|
});
|
|
2224
2224
|
const summary = await runReducerNativeScenarios({
|
|
2225
2225
|
projectRoot,
|
|
2226
2226
|
projectConfig,
|
|
2227
2227
|
resolvedConfig: config,
|
|
2228
|
-
|
|
2228
|
+
projectId: projectConfig.projectId,
|
|
2229
2229
|
compiledResultId: projectConfig.compile?.latestSuccessful?.resultId
|
|
2230
2230
|
});
|
|
2231
2231
|
if (summary.failed > 0) {
|