Skip to content

Commit abce9ce

Browse files
committed
meta: Update lerna commands
1 parent 7225f42 commit abce9ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/craft-pre-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ OLD_VERSION="${1}"
77
NEW_VERSION="${2}"
88
# Do not tag and commit changes made by "npm version"
99
export 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}"

scripts/package-and-upload-to-zeus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const exec = promisify(require('child_process').exec);
33
const 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 (

0 commit comments

Comments
 (0)