dreamboard 0.1.22 → 0.1.23

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
- const packageInfo = readPackageInfos(normalizeRepoRoot(options)).get(
10313
- parsedSpecifier.packageName
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
  }
@@ -27111,7 +27115,7 @@ function runDreamboardCli(internalSubCommands = {}) {
27111
27115
  const main = defineCommand({
27112
27116
  meta: {
27113
27117
  name: "dreamboard",
27114
- version: "0.1.22",
27118
+ version: "0.1.23",
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-AQ5UUNJS.js.map
27174
+ //# sourceMappingURL=chunk-GN7232BY.js.map