Skip to content
This repository was archived by the owner on Sep 21, 2021. It is now read-only.

Commit 009d19c

Browse files
2007heavenjasonLaster
authored andcommitted
Fix lint scripts error (#867)
1 parent b83e8d0 commit 009d19c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"scripts": {
66
"flow": "flow",
77
"license-check": "lerna run license-check",
8-
"lint": "yarn run lint-css -s; a=$?; yarn run lint-js -s; b=$?; test $a -eq 0 -a $b -eq 0",
8+
"lint": "yarn lint-css; a=$?; yarn lint-js; b=$?; test $a -eq 0 -a $b -eq 0",
99
"lint-css": "stylelint packages/devtools-launchpad/**/*.css",
1010
"lint-js": "eslint packages/devtools-launchpad/src; eslint packages/devtools-reps/src; eslint packages/devtools-components/src",
1111
"nom": "rm -rf node_modules/ packages/*/node_modules/ && yarn install",
12-
"prepush": "yarn run lint && yarn run flow",
12+
"prepush": "yarn lint && yarn flow",
1313
"postinstall": "lerna bootstrap",
1414
"test": "lerna run test"
1515
},

0 commit comments

Comments
 (0)