@biffo/cli 0.46.3 → 0.47.0

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/core.version CHANGED
@@ -1 +1 @@
1
- 0.46.3
1
+ 0.47.0
package/dist/index.js CHANGED
@@ -1494,8 +1494,9 @@ function parseGitHubRepo(remoteUrl) {
1494
1494
  if (https && https[1] && https[2]) return { owner: https[1], repo: https[2] };
1495
1495
  throw new Error(`Could not parse a GitHub owner/repo from remote URL: ${remoteUrl}`);
1496
1496
  }
1497
+ var UPGRADE_BRANCH_PREFIX = "biffo/core-upgrade-";
1497
1498
  function upgradeBranchName(from, to) {
1498
- return `biffo/core-upgrade-${from}-to-${to}`.replace(/[^a-zA-Z0-9._/-]/g, "-");
1499
+ return `${UPGRADE_BRANCH_PREFIX}${from}-to-${to}`.replace(/[^a-zA-Z0-9._/-]/g, "-");
1499
1500
  }
1500
1501
 
1501
1502
  // src/lib/core-template-trees.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.46.3",
3
+ "version": "0.47.0",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -36,6 +36,7 @@
36
36
  "typecheck": "tsc --noEmit",
37
37
  "test": "vitest run",
38
38
  "check:core-bump": "tsx src/scripts/check-core-version-bump.ts",
39
+ "check:core-ownership": "tsx src/scripts/check-core-ownership.ts",
39
40
  "check:plugin-terraform": "tsx src/scripts/check-plugin-terraform.ts",
40
41
  "sync:core-tag": "tsx src/scripts/sync-core-tag.ts"
41
42
  },