@dreamboard-games/cli 0.1.30-alpha.10 → 0.1.30-alpha.11
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 +4 -4
- package/dist/agent-verifier/{chunk-MGXX4WFR.mjs → chunk-UIJ2NDG6.mjs} +7 -3
- package/dist/agent-verifier/{chunk-MGXX4WFR.mjs.map → chunk-UIJ2NDG6.mjs.map} +1 -1
- package/dist/agent-verifier/{compile-C2VIP6VC.mjs → compile-WZ7X6I2A.mjs} +2 -2
- package/dist/agent-verifier/{sync-UTL2IIZV.mjs → sync-ELLJEWMB.mjs} +8 -2
- package/dist/agent-verifier/{sync-UTL2IIZV.mjs.map → sync-ELLJEWMB.mjs.map} +1 -1
- package/dist/agent-verifier/{test-H26XCBFA.mjs → test-OSXBPLSP.mjs} +2 -2
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- /package/dist/agent-verifier/{compile-C2VIP6VC.mjs.map → compile-WZ7X6I2A.mjs.map} +0 -0
- /package/dist/agent-verifier/{test-H26XCBFA.mjs.map → test-OSXBPLSP.mjs.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
assertCompilerPortableDependencies,
|
|
4
4
|
consola,
|
|
5
5
|
resolveProjectContext
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-UIJ2NDG6.mjs";
|
|
7
7
|
import "./chunk-3IJBOLGT.mjs";
|
|
8
8
|
import "./chunk-W2MDP5ZN.mjs";
|
|
9
9
|
import "./chunk-TAEQKBJB.mjs";
|
|
@@ -83,9 +83,9 @@ async function verifyAgentWorkspace(rawMode, args) {
|
|
|
83
83
|
}
|
|
84
84
|
async function runFullBackendConnectedVerification(parsedFlags) {
|
|
85
85
|
const [{ default: cmdSync }, { default: cmdCompile }, { default: cmdTest }] = await Promise.all([
|
|
86
|
-
import("./sync-
|
|
87
|
-
import("./compile-
|
|
88
|
-
import("./test-
|
|
86
|
+
import("./sync-ELLJEWMB.mjs"),
|
|
87
|
+
import("./compile-WZ7X6I2A.mjs"),
|
|
88
|
+
import("./test-OSXBPLSP.mjs")
|
|
89
89
|
]);
|
|
90
90
|
await runCommandDefinition(cmdSync, { ...parsedFlags, force: true });
|
|
91
91
|
await runCommandDefinition(cmdCompile, parsedFlags);
|
|
@@ -1559,11 +1559,15 @@ var UNPORTABLE_SPECIFIER_PATTERN = /^(file|link|portal|workspace):/;
|
|
|
1559
1559
|
async function buildSourceDependencyProfile(options) {
|
|
1560
1560
|
const packageJson = await readProjectPackageJson(options.projectRoot);
|
|
1561
1561
|
const packages = collectDreamboardPackageSpecifiers(packageJson);
|
|
1562
|
+
const hasLocalSnapshotPackage = Object.values(packages).some(
|
|
1563
|
+
(value) => value.includes("-local.")
|
|
1564
|
+
);
|
|
1565
|
+
const localMaintainerRegistry = hasLocalSnapshotPackage ? options.projectConfig?.localMaintainerRegistry : void 0;
|
|
1562
1566
|
return {
|
|
1563
1567
|
kind: "npm-registry",
|
|
1564
1568
|
packageManager: packageJson.packageManager,
|
|
1565
|
-
dreamboardRegistryUrl: await readDreamboardRegistryFromNpmrc(options.projectRoot) ??
|
|
1566
|
-
localSnapshotId:
|
|
1569
|
+
dreamboardRegistryUrl: await readDreamboardRegistryFromNpmrc(options.projectRoot) ?? localMaintainerRegistry?.registryUrl,
|
|
1570
|
+
localSnapshotId: localMaintainerRegistry?.snapshotId,
|
|
1567
1571
|
packages
|
|
1568
1572
|
};
|
|
1569
1573
|
}
|
|
@@ -1743,4 +1747,4 @@ export {
|
|
|
1743
1747
|
assertCompilerPortableDependencies,
|
|
1744
1748
|
assertReleaseEnvironmentPortableDependencies
|
|
1745
1749
|
};
|
|
1746
|
-
//# sourceMappingURL=chunk-
|
|
1750
|
+
//# sourceMappingURL=chunk-UIJ2NDG6.mjs.map
|