From 038beb8c55f52f2a3b2a5d9360f9c4596ee2d74d Mon Sep 17 00:00:00 2001 From: IvanZosimov Date: Tue, 28 Mar 2023 13:59:57 +0200 Subject: [PATCH] Fix glob bug in package.json scripts section --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 9bd5b5c33..baac7de47 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,10 @@ "main": "lib/setup-dotnet.js", "scripts": { "build": "tsc && ncc build", - "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write **/*.{ts,yml,yaml}", - "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check **/*.{ts,yml,yaml}", - "lint": "eslint --config ./.eslintrc.js **/*.ts", - "lint:fix": "eslint --config ./.eslintrc.js **/*.ts --fix", + "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"", + "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"", + "lint": "eslint --config ./.eslintrc.js \"**/*.ts\"", + "lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix", "prepare": "husky install", "test": "jest --coverage --config ./jest.config.js", "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"