We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d755f2 commit fddd7c1Copy full SHA for fddd7c1
1 file changed
scripts/bump-package-version.ts
@@ -107,7 +107,10 @@ if (pkg === 'wxt') {
107
}
108
109
// Commit changes
110
-await Bun.$`git add "${pkgJsonPath}" "${changelogPath}" ${templatePkgJsonPaths.join(' ')}`;
+await Bun.$`git add "${pkgJsonPath}" "${changelogPath}"`;
111
+for (const packageJsonPath of templatePkgJsonPaths) {
112
+ await Bun.$`git add "${packageJsonPath}"`;
113
+}
114
await Bun.$`git commit -m "chore(release): ${pkgName} v${newVersion}"`;
115
await Bun.$`git tag ${newTag}`;
116
consola.success('Committed version and changelog');
0 commit comments