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

[WIP] Update to lerna@2.1.1; use Yarn + workspaces #331

Closed
wants to merge 6 commits into from
Closed
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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
- secure: "J+1oWjvvXjyrwkY/4IFWKdN/weFmQcPwlRuFG4R0Gb3rYe4nqtC9l68sJvmS8asc8dQMhOhcUZCH6sjvo7l2WD4NuK4umPSbs+rJNUsfbvH4pZjStQIj/3ll1OfQelGDWAYQWhIfciYY4F3Bp0ZWTfKOppLQ2AVIYu1fPVXDdlo="

before_script:
- lerna bootstrap
- npm run bootstrap

script:
- npm test
Expand Down
6 changes: 6 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


lastUpdateCheck 1504024198268
workspaces-experimental true
4 changes: 3 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"lerna": "2.0.0-rc.5",
"lerna": "2.1.1",
"packages": [
"modules/*"
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent"
}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
"bump": "lerna publish --exact --skip-npm",
"test": "lerna run test"
},
"workspaces": [
"modules/*"
],
"devDependencies": {
"ava": "^0.21.0",
"commit-status": "^4.1.0",
"glob": "^7.1.2",
"lerna": "^2.0.0",
"lerna": "2.1.1",
"npm-run-all": "^4.0.2",
"primer-module-build": "^1.0.2",
"semver": "^5.3.0",
Expand Down
Loading