this repo has no description
0
fork

Configure Feed

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

improve scripts

+13 -4
+1
.github/workflows/test.yml
··· 16 16 with: 17 17 node-version: ${{matrix.node-version}} 18 18 - run: npm clean-install 19 + - run: npm run quality:check 19 20 - run: npm run test
+1
.gitignore
··· 1 + .eslintcache 1 2 coverage 2 3 distribution 3 4 node_modules
+11 -4
package.json
··· 28 28 ], 29 29 "scripts": { 30 30 "build": "del-cli distribution && tsc", 31 - "format": "eslint --fix && npm run prettier -- --write", 31 + "eslint": "eslint --cache", 32 + "format:check": "npm run prettier -- --check", 33 + "format:fix": "npm run prettier -- --write", 34 + "lint:check": "npm run eslint", 35 + "lint:fix": "npm run eslint -- --fix", 32 36 "prepare": "npm run build", 33 - "prettier": "prettier .", 34 - "test": "eslint && npm run prettier -- --check && ava", 35 - "test:coverage": "del-cli coverage && eslint && npm run prettier -- --check && c8 ava" 37 + "prettier": "prettier --cache .", 38 + "quality:check": "npm run format:check && npm run lint:check && npm run types:check", 39 + "quality:fix": "npm run format:fix && npm run lint:fix", 40 + "test": "ava", 41 + "test:coverage": "del-cli coverage && c8 ava", 42 + "types:check": "tsc --noEmit" 36 43 }, 37 44 "dependencies": { 38 45 "ow": "^3.1.1",