Skip to content

Commit 2dbcd3d

Browse files
committed
chore: update lerna and config (#81)
1 parent 9e48177 commit 2dbcd3d

File tree

4 files changed

+763
-591
lines changed

4 files changed

+763
-591
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We follow the [Conventional Commits](https://conventionalcommits.org/) guideline
1212

1313
## Canary Releases
1414

15-
This repo is setup to automatically release canary builds for every commit that is pushed to master. In order to access those builds, run `npm install @angular-redux/store@next` (or whichever package you are looking to use)
15+
This repo is setup to automatically release canary builds for every commit that is pushed to master. In order to access those builds, run `npm install @angular-redux/store@canary` (or whichever package you are looking to use)
1616

1717
## Stable Releases
1818

lerna.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@
1212
"publish": {
1313
"npmClient": "yarn",
1414
"allowBranch": "master",
15-
"message": "chore(release): publish %s"
15+
"contents": "dist"
1616
},
1717
"version": {
18+
"allowBranch": "master",
1819
"conventionalCommits": true,
20+
"exact": true,
21+
"message": "chore(release): publish %s",
1922
"signGitCommit": true,
2023
"signGitTag": true
2124
}

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"build:form": "yarn workspace @angular-redux/form build",
1919
"build:router": "yarn workspace @angular-redux/router build",
2020
"build:example-app": "yarn workspace example-app build",
21-
"release:canary": "lerna publish --canary --contents dist --dist-tag next --npm-client npm",
21+
"release:canary": "lerna publish --canary --dist-tag canary --npm-client npm",
2222
"release:stable": "lerna version",
23-
"release:stable:ci": "lerna publish from-git --contents dist",
23+
"release:stable:ci": "lerna publish from-git",
2424
"clean": "npm-run-all -p clean:*",
2525
"clean:deps": "npm-run-all -p clean:deps:*",
2626
"clean:deps:workspace": "rimraf node_modules",
@@ -72,7 +72,7 @@
7272
"jest-junit": "6.0.1",
7373
"jest-preset-angular": "6.0.2",
7474
"jest-zone-patch": "0.0.10",
75-
"lerna": "3.10.6",
75+
"lerna": "3.13.4",
7676
"lint-staged": "8.1.0",
7777
"ng-packagr": "4.6.0",
7878
"npm-run-all": "4.1.5",

0 commit comments

Comments
 (0)