Skip to content

Commit 920b830

Browse files
authored
Fix glob bug in package.json scripts section (#401)
1 parent abdd14e commit 920b830

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"main": "lib/setup-dotnet.js",
77
"scripts": {
88
"build": "tsc && ncc build",
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
"prepare": "husky install",
1414
"test": "jest --coverage --config ./jest.config.js",
1515
"update-installers": "nwget https://dot.net/v1/dotnet-install.ps1 -O externals/install-dotnet.ps1 && nwget https://dot.net/v1/dotnet-install.sh -O externals/install-dotnet.sh"

0 commit comments

Comments
 (0)