Fix glob bug in package.json scripts section (#29)

This commit is contained in:
Ivan
2023-04-03 12:52:58 +02:00
committed by GitHub
parent e7e3b5daf5
commit e9810b12c0

View File

@ -6,10 +6,10 @@
"scripts": { "scripts": {
"build": "tsc && ncc build", "build": "tsc && ncc build",
"test": "jest", "test": "jest",
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write **/*.{ts,yml,yaml}", "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}", "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint --config ./.eslintrc.js **/*.ts", "lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
"lint:fix": "eslint --config ./.eslintrc.js **/*.ts --fix" "lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix"
}, },
"repository": { "repository": {
"type": "git", "type": "git",