Skip to content
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
12 changes: 11 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
{
"lerna": "2.8.0",
"lerna": "2.9.1",
"packages": ["packages/*", "docs"],
"command": {
"publish": {
"conventionalCommits": true,
"message": "chore: publish release"
},
"run": {
"prefix": false,
"loglevel": "silent",
"parallel": true
},
"clean": {
"loglevel": "silent",
"concurrency": 8,
"yes": true
}
},
"version": "independent"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@types/node": "^8.10.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"lerna": "^2.9.0"
"lerna": "^2.9.1"
},
"scripts": {
"bootstrap": "npm i && lerna bootstrap",
Expand All @@ -34,9 +34,9 @@
"prettier:cli": "node packages/build/bin/run-prettier \"**/*.ts\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"clean": "lerna run clean --loglevel=silent --parallel && node packages/build/bin/run-clean \"packages/*/dist*\"",
"clean:lerna": "lerna clean --yes --parallel --loglevel=silent",
"build": "node bin/run-lerna run build --parallel --loglevel=silent",
"clean": "lerna run clean && node packages/build/bin/run-clean \"packages/*/dist*\"",
"clean:lerna": "lerna clean",
"build": "node bin/run-lerna run build",
"build:full": "npm run clean:lerna && npm run bootstrap && npm test",
"pretest": "npm run clean && npm run build",
"test": "node packages/build/bin/run-nyc npm run mocha --scripts-prepend-node-path",
Expand Down