Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update lerna and config #81

Merged
merged 1 commit into from
May 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We follow the [Conventional Commits](https://conventionalcommits.org/) guideline

## Canary Releases

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)
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)

## Stable Releases

Expand Down
5 changes: 4 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
"publish": {
"npmClient": "yarn",
"allowBranch": "master",
"message": "chore(release): publish %s"
"contents": "dist"
},
"version": {
"allowBranch": "master",
"conventionalCommits": true,
"exact": true,
"message": "chore(release): publish %s",
"signGitCommit": true,
"signGitTag": true
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"build:form": "yarn workspace @angular-redux/form build",
"build:router": "yarn workspace @angular-redux/router build",
"build:example-app": "yarn workspace example-app build",
"release:canary": "lerna publish --canary --contents dist --dist-tag next --npm-client npm",
"release:canary": "lerna publish --canary --dist-tag canary --npm-client npm",
"release:stable": "lerna version",
"release:stable:ci": "lerna publish from-git --contents dist",
"release:stable:ci": "lerna publish from-git",
"clean": "npm-run-all -p clean:*",
"clean:deps": "npm-run-all -p clean:deps:*",
"clean:deps:workspace": "rimraf node_modules",
Expand Down Expand Up @@ -72,7 +72,7 @@
"jest-junit": "6.0.1",
"jest-preset-angular": "6.0.2",
"jest-zone-patch": "0.0.10",
"lerna": "3.10.6",
"lerna": "3.13.4",
"lint-staged": "8.1.0",
"ng-packagr": "4.6.0",
"npm-run-all": "4.1.5",
Expand Down
Loading