Skip to content

Commit 577b9e8

Browse files
committed
revert, run still used for executing package scripts
1 parent 163dca9 commit 577b9e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@
5151
"private": true,
5252
"scripts": {
5353
"postinstall": "lerna bootstrap --hoist",
54-
"build": "lerna exec build",
54+
"build": "lerna run build",
5555
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore .",
5656
"lint:flow": "babel-node scripts/flow-check.js",
5757
"format-packages": "prettier --trailing-comma es5 --no-semi --write packages/**/src/*.js",
5858
"format-gatsby": "prettier --trailing-comma es5 --no-semi --write packages/gatsby/lib/**/*.js",
5959
"format-www": "find www -iname *.js | grep -v node_modules | grep -v public | grep -v .cache | xargs prettier --write --trailing-comma es5 --no-semi",
6060
"format-examples": "find examples -iname *.js | grep -v node_modules | grep -v public | grep -v .cache | xargs prettier --write --trailing-comma es5 --no-semi",
6161
"format": "npm run format-packages && npm run format-gatsby && npm run format-www && npm run format-examples",
62-
"publish-canary": "lerna exec build; lerna publish --canary --yes",
63-
"publish-next": "lerna exec build; lerna publish --npm-tag=next",
62+
"publish-canary": "lerna run build; lerna publish --canary --yes",
63+
"publish-next": "lerna run build; lerna publish --npm-tag=next",
6464
"test": "jest",
6565
"test_bkup": "npm run lint && npm run test-node && npm run test-integration",
66-
"watch": "lerna exec watch --no-sort --stream --concurrency 999"
66+
"watch": "lerna run watch --no-sort --stream --concurrency 999"
6767
},
6868
"devDependencies": {
6969
"babel-preset-flow": "^6.23.0"

0 commit comments

Comments
 (0)