We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9016a commit a24e805Copy full SHA for a24e805
.gitignore
@@ -1,4 +1,5 @@
1
.DS_Store
2
+coverage/
3
dist/
4
docs/.vitepress/cache
5
docs/.vitepress/dist
package.json
@@ -28,6 +28,7 @@
28
],
29
"scripts": {
30
"test": "yarn test:mocha && yarn test:tsc && yarn test:lint && yarn test:prettier",
31
+ "test:coverage": "npx c8 yarn test:mocha",
32
"test:mocha": "mkdir -p test/output && mocha 'test/**/*-test.*' 'test/plot.js'",
33
"test:lint": "eslint src test",
34
"test:prettier": "prettier --check src test",
@@ -74,6 +75,11 @@
74
75
"vite": "4.4.7",
76
"vitepress": "1.0.0-beta.7"
77
},
78
+ "c8": {
79
+ "all": true,
80
+ "include": ["src/**/*.js"],
81
+ "reporter": ["text", "lcov"]
82
+ },
83
"dependencies": {
84
"d3": "^7.8.0",
85
"interval-tree-1d": "^1.0.0",
0 commit comments