Skip to content

Commit 0a06c2a

Browse files
knagaitsevevilebottnawi
authored andcommitted
fix(package.json): made quotes windows compatible (#1914)
1 parent 6fa1572 commit 0a06c2a

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
@@ -14,9 +14,9 @@
1414
"node": ">= 6.11.5"
1515
},
1616
"scripts": {
17-
"lint:prettier": "prettier '{**/*,*}.{js,json,md,yml,css}' --list-different",
17+
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
1818
"lint:js": "eslint . --cache",
19-
"lint": "npm-run-all -l -p 'lint:**'",
19+
"lint": "npm-run-all -l -p \"lint:**\"",
2020
"commitlint": "commitlint --from=master",
2121
"security": "npm audit",
2222
"test:only": "jest --runInBand",
@@ -25,7 +25,7 @@
2525
"test": "npm run test:coverage",
2626
"pretest": "npm run lint",
2727
"prepare": "rimraf ./ssl/*.pem && npm run -s transpile:index && npm run -s build:live && npm run -s build:index && npm run -s build:sockjs",
28-
"transpile:index": "babel client-src/default --out-dir client --ignore './client-src/default/*.config.js'",
28+
"transpile:index": "babel client-src/default --out-dir client --ignore \"./client-src/default/*.config.js\"",
2929
"build:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js",
3030
"build:live": "webpack ./client-src/live/index.js -o client/live.bundle.js --color --config client-src/live/webpack.config.js",
3131
"build:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js",

0 commit comments

Comments
 (0)