Skip to content

Commit

Permalink
Discovered a more global way of ensuring that lerna always publishes …
Browse files Browse the repository at this point in the history
…with exact versions.
  • Loading branch information
dacarley committed Oct 26, 2017
1 parent fb3bcae commit b69b7dc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"version": "1.0.0-beta.24",
"lerna": "2.0.0",
"command": {
"init": {
"exact": true
},
"publish": {
"exact": true,
"skipGit": true
}
},
"packages": [
"packages/*"
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"postinstall": "lerna bootstrap",
"build": "gulp",
"build-all": "gulp all",
"release": "lerna bootstrap; lerna publish --exact --skip-git; gulp version; gulp",
"release": "lerna bootstrap; lerna publish; gulp version; gulp",
"watch": "gulp watch",
"docs": "cd docs; make html;",
"lint": "jshint *.js packages",
Expand Down

0 comments on commit b69b7dc

Please sign in to comment.