dreamboard 0.1.18 → 0.1.20
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.
|
@@ -11272,6 +11272,13 @@ function readPackagedSdkDependencyRange(packageName, importMetaUrl = import.meta
|
|
|
11272
11272
|
return packagedRange.trim();
|
|
11273
11273
|
}
|
|
11274
11274
|
function resolveSdkDependencyRange(packageName, importMetaUrl = import.meta.url) {
|
|
11275
|
+
const packagedRange = readPackagedSdkDependencyRange(
|
|
11276
|
+
packageName,
|
|
11277
|
+
importMetaUrl
|
|
11278
|
+
);
|
|
11279
|
+
if (packagedRange) {
|
|
11280
|
+
return packagedRange;
|
|
11281
|
+
}
|
|
11275
11282
|
try {
|
|
11276
11283
|
const repoRoot = resolveCliRepoRoot(importMetaUrl);
|
|
11277
11284
|
const packageJsonPath = path7.join(
|
|
@@ -11284,13 +11291,6 @@ function resolveSdkDependencyRange(packageName, importMetaUrl = import.meta.url)
|
|
|
11284
11291
|
}
|
|
11285
11292
|
} catch {
|
|
11286
11293
|
}
|
|
11287
|
-
const packagedRange = readPackagedSdkDependencyRange(
|
|
11288
|
-
packageName,
|
|
11289
|
-
importMetaUrl
|
|
11290
|
-
);
|
|
11291
|
-
if (packagedRange) {
|
|
11292
|
-
return packagedRange;
|
|
11293
|
-
}
|
|
11294
11294
|
return DEFAULT_SDK_DEPENDENCY_RANGES[packageName];
|
|
11295
11295
|
}
|
|
11296
11296
|
function normalizeImportPath(relativePath) {
|
|
@@ -26814,20 +26814,31 @@ export {
|
|
|
26814
26814
|
toDreamboardApiError,
|
|
26815
26815
|
getAuthoringHeadSdk,
|
|
26816
26816
|
resolveCliRepoRoot,
|
|
26817
|
+
loadManifest,
|
|
26817
26818
|
getLocalDiff,
|
|
26819
|
+
scaffoldStaticWorkspace,
|
|
26818
26820
|
assertCliStaticScaffoldComplete,
|
|
26819
26821
|
getProjectAuthoringState,
|
|
26820
26822
|
getProjectPendingAuthoringSync,
|
|
26823
|
+
getProjectLocalMaintainerRegistry,
|
|
26824
|
+
applyWorkspaceCodegen,
|
|
26825
|
+
reconcileWorkspaceDependencies,
|
|
26826
|
+
runLocalTypecheck,
|
|
26821
26827
|
compile_default,
|
|
26822
26828
|
startCliAuthServer,
|
|
26823
26829
|
openBrowser,
|
|
26824
26830
|
subscribeToCliSessionEvents,
|
|
26831
|
+
isReducerNativeTestingWorkspace,
|
|
26825
26832
|
createScenarioActionPlan,
|
|
26826
26833
|
createActionPlanReplaySession,
|
|
26827
26834
|
replayActionPlanInSession,
|
|
26835
|
+
generateReducerNativeArtifacts,
|
|
26836
|
+
runReducerNativeScenarios,
|
|
26837
|
+
assertReducerContractPreflight,
|
|
26838
|
+
assertReducerBundleSmoke,
|
|
26828
26839
|
sync_default,
|
|
26829
26840
|
resolveLatestCompiledResult,
|
|
26830
26841
|
test_default,
|
|
26831
26842
|
runDreamboardCli
|
|
26832
26843
|
};
|
|
26833
|
-
//# sourceMappingURL=chunk-
|
|
26844
|
+
//# sourceMappingURL=chunk-UMQLRVSV.js.map
|