diff --git a/package.json b/package.json index f7b006f..4417788 100644 --- a/package.json +++ b/package.json @@ -26,13 +26,14 @@ "scripts": { "bundle": "npm run format:write && npm run package", "ci-test": "jest", + "coverage": "make-coverage-badge --output-path ./badges/coverage.svg", "format:write": "prettier --write **/*.ts", "format:check": "prettier --check **/*.ts", "lint": "npx eslint . -c ./.github/linters/.eslintrc.yml", "package": "ncc build src/index.ts --license licenses.txt", "package:watch": "npm run package -- --watch", - "test": "(jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg", - "all": "npm run format:write && npm run lint && npm run test && npm run package" + "test": "jest", + "all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package" }, "license": "MIT", "jest": {