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

Commit ae36edb

Browse files
committed
Fix Windows compatibility of NPM scripts
1 parent 9c45508 commit ae36edb

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
@@ -34,11 +34,11 @@
3434
"test": "run-s test:*",
3535
"test:jest": "jest",
3636
"test:types": "tsc --noEmit && tsc --project ./website --noEmit",
37-
"lint:css": "stylelint --ignore-path ./.gitignore --max-warnings 0 '**/*.{css,sass,scss}'",
37+
"lint:css": "stylelint --ignore-path ./.gitignore --max-warnings 0 \"**/*.{css,sass,scss}\"",
3838
"lint:css:fix": "yarn lint:css --fix",
39-
"lint:ts": "eslint --ext .ts,.tsx --ignore-path ./.gitignore --max-warnings 0 '**/*.{ts,tsx}'",
39+
"lint:ts": "eslint --ext .ts,.tsx --ignore-path ./.gitignore --max-warnings 0 \"**/*.{ts,tsx}\"",
4040
"lint:ts:fix": "yarn lint:ts --fix",
41-
"format": "prettier --ignore-path ./.gitignore --list-different '**/*.{css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml}'",
41+
"format": "prettier --ignore-path ./.gitignore --list-different \"**/*.{css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml}\"",
4242
"format:fix": "yarn format --write"
4343
},
4444
"dependencies": {

0 commit comments

Comments
 (0)