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 e16052c commit e1e41c2Copy full SHA for e1e41c2
1 file changed
scripts/bump-package-version.ts
@@ -37,7 +37,7 @@ if (currentVersion.startsWith('0.')) {
37
bumpType = 'patch';
38
}
39
40
-await Bun.$`bun --cwd "${pkgDir}" pm version ${bumpType}`;
+await Bun.$`cd "${pkgDir}" && bun pm version ${bumpType}`;
41
const updatedPkgJson = await Bun.file(pkgJsonPath).json();
42
const newVersion: string = updatedPkgJson.version;
43
const newTag = getPkgTag(pkg, newVersion);
0 commit comments