Skip to content

Commit b8e9aed

Browse files
authored
Use Double Quotes in package.json > scripts
Changed single quote to double quote when invoking Standard in package.json > scripts, as single quotes do not work on Windows.
1 parent f589a20 commit b8e9aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"scripts": {
143143
"build": "echo nothing to build",
144144
"solid": "node ./bin/solid",
145-
"standard": "standard '{bin,examples,lib,test}/**/*.js'",
145+
"standard": "standard \"{bin,examples,lib,test}/**/*.js\"",
146146
"validate": "node ./test/validate-turtle.js",
147147
"nyc": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 nyc --reporter=text-summary mocha --recursive test/integration/ test/unit/",
148148
"mocha": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --recursive test/integration/ test/unit/",

0 commit comments

Comments
 (0)