Skip to content

Commit

Permalink
fix(lerna): version behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Jun 14, 2023
1 parent c2a59dc commit c921bc7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,21 @@
"core/*",
"services/*",
"ui/*",
"demo"
"uniquely/*",
"labs/*"
],
"command": {
"version": {
"conventionalCommits": true,
"changelogPreset": "angular",
"message": "release: %s"
"message": "release: %s",
"forcePublish": true,
"push": true
},
"publish": {
"conventionalCommits": true,
"ignoreChanges": ["*.md"]
},
"bootstrap": {
"hoist": true,
"npmClientArgs": ["--no-package-lock"]
},
"run": {
"stream": true
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"f": "yarn format",
"fl": "yarn format:eslint",
"fp": "yarn format:prettier",
"pm": "run-s pull clean build:ts build:r ver-minor push",
"pp": "run-s pull clean build:ts build:r ver-patch push",
"pm": "run-s pull clean build:ts build:r ver-minor",
"pp": "run-s pull clean build:ts build:r ver-patch",
"lint": "run-s lint:*",
"lint:ts": "eslint . --config .eslintrc.json --ext .ts",
"build": "yarn build:ts",
Expand All @@ -44,8 +44,8 @@
"serve": "wds",
"watch": "run-p watch:* serve",
"watch:ts": "yarn build:ts --watch --preserveWatchOutput",
"ver-minor": "lerna version minor --no-push",
"ver-patch": "lerna version patch --no-push",
"ver-minor": "lerna version minor",
"ver-patch": "lerna version patch",
"pull": "git pull",
"push": "git push && git push --tags",
"publish": "lerna publish from-package"
Expand Down

0 comments on commit c921bc7

Please sign in to comment.