mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
prettier scripts incorrectly set --ignore-path
--ignore-path is meant to be the path of an ignore-file, not the actual directories to ignore.
This commit is contained in:
parent
2962e94ac8
commit
71199d2757
2 changed files with 3 additions and 3 deletions
|
@ -25,8 +25,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "npx ncc build ./src/index.ts && mv ./dist/index.js ./dist/index.mjs",
|
"build": "npx ncc build ./src/index.ts && mv ./dist/index.js ./dist/index.mjs",
|
||||||
"test": "vitest",
|
"test": "vitest",
|
||||||
"format": "prettier --write . --ignore-path ./dist/**",
|
"format": "prettier --write .",
|
||||||
"check": "prettier --check . --ignore-path ./dist/**"
|
"check": "prettier --check ."
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.0"
|
"@actions/core": "^1.10.0"
|
||||||
|
|
Loading…
Reference in a new issue