create-bw-app 0.24.4 → 0.24.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-bw-app",
3
3
  "private": false,
4
- "version": "0.24.4",
4
+ "version": "0.24.5",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "create-bw-app": "bin/create-bw-app.mjs",
package/src/update.mjs CHANGED
@@ -612,6 +612,7 @@ export async function buildBrightwebAppUpdatePlan(argvOptions = {}, runtimeOptio
612
612
  manifest,
613
613
  installedModules,
614
614
  installedBrightwebPackages: Array.from(installedBrightwebPackagesMap.keys()).sort(),
615
+ targetVersions: canonicalVersions,
615
616
  packageUpdates: packageJsonUpdate.packageUpdates,
616
617
  configFilesToWrite: fileWrites.filter((entry) => entry.type === "config").map((entry) => entry.relativePath),
617
618
  starterFilesMissing: starterFilesMissing.map((entry) => entry.relativePath),
package/src/upgrade.mjs CHANGED
@@ -33,6 +33,10 @@ export async function upgradeBrightwebApp(moduleKey, argvOptions = {}, runtimeOp
33
33
  plan.starterFilesMissing = Array.from(new Set([...plan.starterFilesMissing, ...missing]));
34
34
 
35
35
  const catalog = await loadModuleCatalog({ targetDir, workspaceRoot });
36
+ for (const entry of Object.values(catalog)) {
37
+ const targetVersion = plan.targetVersions?.[entry.packageName];
38
+ if (targetVersion) entry.version = cleanVersion(targetVersion) || entry.version;
39
+ }
36
40
  for (const update of plan.packageUpdates) {
37
41
  const key = Object.keys(catalog).find((candidate) => catalog[candidate].packageName === update.packageName);
38
42
  if (key) catalog[key].version = cleanVersion(update.to) || catalog[key].version;
@@ -60,7 +64,8 @@ export async function upgradeBrightwebApp(moduleKey, argvOptions = {}, runtimeOp
60
64
  await applyMigrationWrites(migrationPlan.writes);
61
65
  appManifest.migrationCursor = migrationPlan.nextCursor;
62
66
  for (const [key, entry] of Object.entries(appManifest.modules)) {
63
- if (catalog[key]?.packageRoot) entry.version = catalog[key].version;
67
+ const packageName = catalog[key]?.packageName;
68
+ if (catalog[key]?.packageRoot || plan.targetVersions?.[packageName]) entry.version = catalog[key].version;
64
69
  }
65
70
  for (const write of plan.fileWrites) {
66
71
  const relativePath = write.relativePath;