Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 56667cf

Browse files
committed
chore(project): don't limit scripts to particular scope
Some packages are in @apielements and this filter seems to prevent them from being executed.
1 parent 76e1d26 commit 56667cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"scripts": {
99
"release": "lerna publish",
1010
"release:force": "lerna publish --force-publish",
11-
"lint": "lerna exec --scope='*' --concurrency 1 --no-bail -- npm run lint",
12-
"lint:fix": "lerna exec --scope='*' --concurrency 1 --no-bail -- npm run lint:fix",
13-
"test": "lerna exec --scope='*' --concurrency 1 --no-bail -- npm run test",
11+
"lint": "lerna exec --concurrency 1 --no-bail -- npm run lint",
12+
"lint:fix": "lerna exec --concurrency 1 --no-bail -- npm run lint:fix",
13+
"test": "lerna exec --concurrency 1 --no-bail -- npm run test",
1414
"cover": "nyc npm test",
1515
"coveralls": "nyc report --reporter=text-lcov | coveralls"
1616
},

0 commit comments

Comments
 (0)