File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ OLD_VERSION="${1}"
77NEW_VERSION=" ${2} "
88 # Do not tag and commit changes made by "npm version"
99export npm_config_git_tag_version=false
10- yarn lerna version --exact --no-git-tag-version --no-push -y " ${NEW_VERSION} "
10+ yarn lerna version --exact --no-git-tag-version --no-push -y --include-merged-tags " ${NEW_VERSION} "
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const exec = promisify(require('child_process').exec);
33const join = require ( 'path' ) . join ;
44
55( async ( ) => {
6- const result = ( await exec ( 'yarn lerna changed -p' ) ) . stdout ;
6+ const result = ( await exec ( 'yarn lerna changed -p --include-merged-tags ' ) ) . stdout ;
77 const lines = result . split ( '\n' ) ;
88
99 if (
You can’t perform that action at this time.
0 commit comments