this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

improve script caching

+10 -8
+10 -8
package.json
··· 24 24 "library" 25 25 ], 26 26 "scripts": { 27 - "eslint": "eslint --cache", 28 - "format:check": "npm run prettier -- --check", 29 - "format:fix": "npm run prettier -- --write", 30 - "lint:check": "npm run eslint", 31 - "lint:fix": "npm run eslint -- --fix", 32 - "prettier": "prettier --cache .", 27 + "_eslint": "eslint --cache --cache-strategy=content", 28 + "_knip": "knip --cache", 29 + "_prettier": "prettier --cache .", 30 + "format:check": "npm run _prettier -- --check", 31 + "format:fix": "npm run _prettier -- --write", 32 + "lint:check": "npm run _eslint", 33 + "lint:fix": "npm run _eslint -- --fix", 33 34 "quality:check": "npm run format:check && npm run lint:check && npm run unused:check", 34 - "quality:fix": "npm run format:fix && npm run lint:fix", 35 - "unused:check": "knip" 35 + "quality:fix": "npm run format:fix && npm run lint:fix && npm run unused:fix", 36 + "unused:check": "npm run _knip", 37 + "unused:fix": "npm run _knip -- --fix" 36 38 }, 37 39 "dependencies": { 38 40 "@commander-js/extra-typings": "^14.0.0",