Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #54 from zalando-incubator/fix-lerna-bootstrap
Browse files Browse the repository at this point in the history
Preinstall dependencies before lerna bootstrap
  • Loading branch information
mfellner committed Feb 3, 2017
2 parents bdcf08e + b750077 commit 6a33b52
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ addons:
packages:
- g++-4.8
cache:
yarn: true
directories:
- node_modules
- packages/tessellate-bundler/node_modules
Expand Down
13 changes: 10 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"lerna": "2.0.0-beta.30",
"bootstrapConfig": {
"ignore": "*example*"
"lerna": "2.0.0-beta.35",
"commands": {
"bootstrap": {
"ignore": [
"*example*"
],
"scope": [
"tessellate-*"
]
}
},
"version": "independent"
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"postinstall": "npm run bootstrap && npm run dist",
"test": "lerna run test",
"dist": "lerna run dist",
"bootstrap": "lerna bootstrap",
"bootstrap": "lerna exec --ignore *example* -- npm install && lerna bootstrap --ignore *example*",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform"
},
"devDependencies": {
"commitizen": "2.8.6",
"cz-lerna-changelog": "0.3.0",
"lerna": "2.0.0-beta.30",
"lerna-semantic-release": "8.0.2"
"commitizen": "2.9.5",
"cz-lerna-changelog": "1.1.0",
"lerna": "2.0.0-beta.35",
"lerna-semantic-release": "9.0.4"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit 6a33b52

Please sign in to comment.