Skip to content

Commit 3091b37

Browse files
authored
Fix glob bug in package.json scripts section (#637)
1 parent dfa76f8 commit 3091b37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"main": "dist/index.js",
77
"scripts": {
88
"build": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts",
9-
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write **/*.{ts,yml,yaml}",
10-
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check **/*.{ts,yml,yaml}",
11-
"lint": "eslint --config ./.eslintrc.js **/*.ts",
12-
"lint:fix": "eslint --config ./.eslintrc.js **/*.ts --fix",
9+
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
10+
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
11+
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
12+
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix",
1313
"release": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts && git add -f dist/",
1414
"test": "jest --coverage"
1515
},

0 commit comments

Comments
 (0)