this repo has no description
0
fork

Configure Feed

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

improve scripts

+17 -10
+1
.gitignore
··· 2 2 coverage 3 3 distribution 4 4 node_modules 5 + tsconfig.tsbuildinfo
+3
eslint.config.js
··· 29 29 { 30 30 files: ['package.json'], 31 31 extends: [packageJson.configs.recommended, packageJson.configs.stylistic], 32 + rules: { 33 + 'package-json/scripts-name-casing': 'off', 34 + }, 32 35 }, 33 36 ]);
+13 -10
package.json
··· 28 28 "distribution" 29 29 ], 30 30 "scripts": { 31 - "build": "rm -fr distribution && tsc", 32 - "eslint": "eslint --cache", 33 - "format:check": "npm run prettier -- --check", 34 - "format:fix": "npm run prettier -- --write", 35 - "lint:check": "npm run eslint", 36 - "lint:fix": "npm run eslint -- --fix", 31 + "_eslint": "eslint --cache --cache-strategy=content", 32 + "_knip": "knip --cache", 33 + "_prettier": "prettier --cache .", 34 + "_typescript": "tsc --incremental", 35 + "build": "rm -fr distribution tsconfig.tsbuildinfo && npm run _typescript", 36 + "format:check": "npm run _prettier -- --check", 37 + "format:fix": "npm run _prettier -- --write", 38 + "lint:check": "npm run _eslint", 39 + "lint:fix": "npm run _eslint -- --fix", 37 40 "prepack": "npm run build", 38 - "prettier": "prettier --cache .", 39 41 "quality:check": "npm run format:check && npm run lint:check && npm run types:check && npm run unused:check", 40 - "quality:fix": "npm run format:fix && npm run lint:fix", 42 + "quality:fix": "npm run format:fix && npm run lint:fix && npm run unused:fix", 41 43 "test": "vitest run", 42 44 "test:coverage": "vitest run --coverage", 43 - "types:check": "tsc --noEmit", 44 - "unused:check": "knip" 45 + "types:check": "npm run _typescript -- --noEmit", 46 + "unused:check": "npm run _knip", 47 + "unused:fix": "npm run _knip -- --fix" 45 48 }, 46 49 "devDependencies": { 47 50 "@tsconfig/strictest": "^2.0.8",