From 28483443e24a4b5e2ef522fa7bad40869a8a0889 Mon Sep 17 00:00:00 2001 From: IvanZosimov Date: Tue, 28 Mar 2023 13:55:14 +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 048d3b69e..50e75043c 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,10 @@ "main": "dist/index.js", "scripts": { "build": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts", - "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", "release": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts && git add -f dist/", "test": "jest --coverage" },