Skip to content

Commit

Permalink
chore: generate coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Mar 20, 2023
1 parent 723be60 commit eed6979
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"scripts": {
"pretest": "npm run lint",
"test": "node --loader=ts-node/esm bin/test.ts",
"test": "c8 npm run vscode:test",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
Expand All @@ -25,6 +25,7 @@
"format": "prettier --write .",
"release": "np",
"version": "npm run build",
"vscode:test": "node --loader=ts-node/esm bin/test.js",
"sync-labels": "github-label-sync --labels .github/labels.json dimerapp/shiki"
},
"keywords": [
Expand All @@ -45,6 +46,7 @@
"@japa/spec-reporter": "^1.3.3",
"@swc/core": "^1.3.41",
"@types/node": "^18.15.3",
"c8": "^7.13.0",
"del-cli": "^5.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
Expand Down Expand Up @@ -119,5 +121,14 @@
"message": "chore(release): %s",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
}
}

0 comments on commit eed6979

Please sign in to comment.