dreamboard 0.1.22 → 0.1.24
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.
|
@@ -10309,9 +10309,13 @@ function resolveRepoLocalPackageSource(specifier, options) {
|
|
|
10309
10309
|
if (!parsedSpecifier) {
|
|
10310
10310
|
return null;
|
|
10311
10311
|
}
|
|
10312
|
-
|
|
10313
|
-
|
|
10314
|
-
|
|
10312
|
+
let repoRoot;
|
|
10313
|
+
try {
|
|
10314
|
+
repoRoot = normalizeRepoRoot(options);
|
|
10315
|
+
} catch {
|
|
10316
|
+
return null;
|
|
10317
|
+
}
|
|
10318
|
+
const packageInfo = readPackageInfos(repoRoot).get(parsedSpecifier.packageName);
|
|
10315
10319
|
if (!packageInfo) {
|
|
10316
10320
|
return null;
|
|
10317
10321
|
}
|
|
@@ -11450,6 +11454,13 @@ function readPackagedSdkDependencyRange(packageName, importMetaUrl = import.meta
|
|
|
11450
11454
|
return packagedRange.trim();
|
|
11451
11455
|
}
|
|
11452
11456
|
function resolveSdkDependencyRange(packageName, importMetaUrl = import.meta.url) {
|
|
11457
|
+
const packagedRange = readPackagedSdkDependencyRange(
|
|
11458
|
+
packageName,
|
|
11459
|
+
importMetaUrl
|
|
11460
|
+
);
|
|
11461
|
+
if (packagedRange) {
|
|
11462
|
+
return packagedRange;
|
|
11463
|
+
}
|
|
11453
11464
|
try {
|
|
11454
11465
|
const repoRoot = resolveCliRepoRoot(importMetaUrl);
|
|
11455
11466
|
const packageJsonPath = path7.join(
|
|
@@ -11462,13 +11473,6 @@ function resolveSdkDependencyRange(packageName, importMetaUrl = import.meta.url)
|
|
|
11462
11473
|
}
|
|
11463
11474
|
} catch {
|
|
11464
11475
|
}
|
|
11465
|
-
const packagedRange = readPackagedSdkDependencyRange(
|
|
11466
|
-
packageName,
|
|
11467
|
-
importMetaUrl
|
|
11468
|
-
);
|
|
11469
|
-
if (packagedRange) {
|
|
11470
|
-
return packagedRange;
|
|
11471
|
-
}
|
|
11472
11476
|
return DEFAULT_SDK_DEPENDENCY_RANGES[packageName];
|
|
11473
11477
|
}
|
|
11474
11478
|
function normalizeImportPath(relativePath) {
|
|
@@ -27111,7 +27115,7 @@ function runDreamboardCli(internalSubCommands = {}) {
|
|
|
27111
27115
|
const main = defineCommand({
|
|
27112
27116
|
meta: {
|
|
27113
27117
|
name: "dreamboard",
|
|
27114
|
-
version: "0.1.
|
|
27118
|
+
version: "0.1.24",
|
|
27115
27119
|
description: "Dreamboard CLI \u2014 game development platform"
|
|
27116
27120
|
},
|
|
27117
27121
|
subCommands
|
|
@@ -27167,4 +27171,4 @@ export {
|
|
|
27167
27171
|
test_default,
|
|
27168
27172
|
runDreamboardCli
|
|
27169
27173
|
};
|
|
27170
|
-
//# sourceMappingURL=chunk-
|
|
27174
|
+
//# sourceMappingURL=chunk-GL46CLDI.js.map
|