Skip to content

Commit

Permalink
Other (release-tools): Added the --no-workspaces-update flag to the…
Browse files Browse the repository at this point in the history
… "bumpVersions()" task to avoid the "ETARGET" error. Closes ckeditor/ckeditor5#13488.
  • Loading branch information
pomek committed Feb 22, 2023
1 parent 627d2d5 commit 1e10a15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ module.exports = async function bumpVersions( options ) {

log.info( `\nBumping version for "${ chalk.underline( packageJson.name ) }"...` );

exec( `npm version ${ releaseDetails.version } --no-git-tag-version` );
exec( `npm version ${ releaseDetails.version } --no-git-tag-version --no-workspaces-update` );
exec( 'git add .' );
}
}
Expand Down

0 comments on commit 1e10a15

Please sign in to comment.