You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/craft-pre-release.sh
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,5 @@ NEW_VERSION="${2}"
11
11
export npm_config_git_tag_version=false
12
12
13
13
yarn install --frozen-lockfile
14
-
# --force-publish - force publish all packages, this will skip the lerna changed check for changed packages and forces a package that didn't have a git diff change to be updated.
15
-
# --exact - specify updated dependencies in updated packages exactly (with no punctuation), instead of as semver compatible (with a ^).
16
-
# --no-git-tag-version - don't commit changes to package.json files and don't tag the release.
17
-
# --no-push - don't push committed and tagged changes.
18
-
# --include-merged-tags - include tags from merged branches when detecting changed packages.
19
-
# --yes - skip all confirmation prompts
20
-
yarn lerna version --force-publish --exact --no-git-tag-version --no-push --include-merged-tags --yes "${NEW_VERSION}"
14
+
# Bump version in all workspace packages (exact versions, no git tags or commits)
0 commit comments