From 5fdff26c1325df635247f72cba79ffc370303fdb Mon Sep 17 00:00:00 2001 From: workflow <4farlion@gmail.com> Date: Fri, 20 Sep 2024 19:35:33 +0100 Subject: [PATCH] ci: remove coverage script --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 50dcfcc..8e8a178 100644 --- a/package.json +++ b/package.json @@ -27,14 +27,13 @@ "scripts": { "bundle": "npm run format:write && npm run package", "ci-test": "npx jest", - "coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg", "format:write": "npx prettier --write .", "format:check": "npx prettier --check .", "lint": "npx eslint . -c ./.github/linters/.eslintrc.yml", "package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt", "package:watch": "npm run package -- --watch", "test": "npx jest", - "all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package" + "all": "npm run format:write && npm run lint && npm run test && npm run package" }, "license": "MIT", "jest": {