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

Commit 228aa3a

Browse files
committed
remove quotes around npm script args
1 parent c004751 commit 228aa3a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
"uuid": "^3.3.3"
3737
},
3838
"scripts": {
39-
"test": "tap --no-cov 'test/**/*.test.js'",
40-
"test:cov": "tap 'test/**/*.test.js'",
41-
"test:cov:html": "tap --coverage-report=html 'test/**/*.test.js'",
42-
"test:watch": "tap -n -w --no-coverage-report 'test/**/*.test.js'",
43-
"lint": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js' | snazzy",
44-
"lint:ci": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js'"
39+
"test": "tap --no-cov test/**/*.test.js",
40+
"test:cov": "tap test/**/*.test.js",
41+
"test:cov:html": "tap --coverage-report=html test/**/*.test.js",
42+
"test:watch": "tap -n -w --no-coverage-report test/**/*.test.js",
43+
"lint": "standard examples/**/*.js lib/**/*.js test/**/*.js | snazzy",
44+
"lint:ci": "standard examples/**/*.js lib/**/*.js test/**/*.js"
4545
},
4646
"husky": {
4747
"hooks": {

0 commit comments

Comments
 (0)