remove --cache from betterer command due to bug (#51419)

This commit is contained in:
Ashley Harrison 2022-06-27 10:12:56 +01:00 committed by GitHub
parent dd9bd7eec2
commit 9f4365be13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,7 @@
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"postinstall": "husky install",
"betterer": "betterer --cache",
"betterer": "betterer",
"betterer:merge": "betterer merge",
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts"
},
@ -63,7 +63,7 @@
},
"lint-staged": {
"*.{js,ts,tsx}": [
"betterer --cache precommit",
"betterer precommit",
"eslint --ext .js,.tsx,.ts --cache --fix",
"prettier --write"
],