dreamboard 0.1.12 → 0.1.13
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.
|
@@ -11299,7 +11299,19 @@ function setLatestCompileAttempt(projectConfig, attempt) {
|
|
|
11299
11299
|
function updateProjectLocalMaintainerRegistry(projectConfig, localMaintainerRegistry) {
|
|
11300
11300
|
return {
|
|
11301
11301
|
...projectConfig,
|
|
11302
|
-
localMaintainerRegistry
|
|
11302
|
+
localMaintainerRegistry: sanitizeProjectLocalMaintainerRegistry(
|
|
11303
|
+
localMaintainerRegistry
|
|
11304
|
+
)
|
|
11305
|
+
};
|
|
11306
|
+
}
|
|
11307
|
+
function sanitizeProjectLocalMaintainerRegistry(localMaintainerRegistry) {
|
|
11308
|
+
if (!localMaintainerRegistry?.packages.dreamboard) {
|
|
11309
|
+
return localMaintainerRegistry;
|
|
11310
|
+
}
|
|
11311
|
+
const { dreamboard: _dreamboard, ...packages } = localMaintainerRegistry.packages;
|
|
11312
|
+
return {
|
|
11313
|
+
...localMaintainerRegistry,
|
|
11314
|
+
packages
|
|
11303
11315
|
};
|
|
11304
11316
|
}
|
|
11305
11317
|
|
|
@@ -26107,4 +26119,4 @@ export {
|
|
|
26107
26119
|
test_default,
|
|
26108
26120
|
runDreamboardCli
|
|
26109
26121
|
};
|
|
26110
|
-
//# sourceMappingURL=chunk-
|
|
26122
|
+
//# sourceMappingURL=chunk-6FPQ3S2J.js.map
|