Skip to content

Commit f611aad

Browse files
github-actions[bot]ochafik
authored andcommitted
style: auto-fix prettier formatting
1 parent e23acaa commit f611aad

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

scripts/bump-version.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ exec(`npm pkg set version=${newVersion} --workspaces`);
3838

3939
// Keep workspace dependency ranges compatible (needed on major bumps)
4040
const [major, minor] = newVersion.split(".");
41-
exec(
42-
`npm pkg set "dependencies.${pkgName}=^${major}.${minor}.0" --workspaces`,
43-
);
41+
exec(`npm pkg set "dependencies.${pkgName}=^${major}.${minor}.0" --workspaces`);
4442

4543
// Sync package-lock.json so `npm ci` doesn't reject the release PR
4644
exec("npm install --package-lock-only --ignore-scripts");

0 commit comments

Comments
 (0)