|
24 | 24 | "build": "cross-env NODE_NO_WARNINGS=1 next build", |
25 | 25 | "start": "cross-env NODE_NO_WARNINGS=1 next start", |
26 | 26 | "deploy": "cross-env NEXT_STATIC_EXPORT=true npm run build", |
27 | | - "lint:js": "eslint \"**/*.{mjs,ts,tsx}\" --cache --cache-strategy content --cache-file .eslintjscache", |
28 | | - "lint:md": "eslint \"**/*.md?(x)\" --cache --cache-strategy content --cache-file .eslintmdcache", |
| 27 | + "lint:js": "eslint \"**/*.{js,mjs,ts,tsx}\" --cache --cache-strategy metadata --cache-file .eslintjscache", |
| 28 | + "lint:md": "eslint \"**/*.md?(x)\" --cache --cache-strategy metadata --cache-file .eslintmdcache", |
29 | 29 | "lint:css": "stylelint --allow-empty-input \"**/*.css\"", |
30 | 30 | "lint": "npm run lint:js && npm run lint:md && npm run lint:css", |
31 | 31 | "lint:fix": "npm run lint:js -- --fix && npm run lint:md -- --fix && npm run lint:css -- --fix", |
32 | | - "prettier": "prettier \"**/*.{mjs,ts,tsx,md,mdx,json,yml,css,sass,scss}\" --check --cache --cache-strategy content --cache-location=.prettiercache", |
| 32 | + "prettier": "prettier \"**/*.{js,mjs,ts,tsx,md,mdx,json,yml,css,sass,scss}\" --check --cache --cache-strategy metadata --cache-location=.prettiercache", |
33 | 33 | "prettier:fix": "npm run prettier -- --write", |
34 | 34 | "format": "npm run lint:fix && npm run prettier:fix", |
35 | 35 | "storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet --no-open", |
|
0 commit comments