We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c65557 commit daff350Copy full SHA for daff350
3 files changed
.gitignore
@@ -1,4 +1,6 @@
1
tags
2
.idea
3
node_modules/
4
-package-lock.json
+package-lock.json
5
+
6
+coverage
.npmignore
@@ -1,2 +1,4 @@
# We doesn't wan to publish the logo and other
assets
package.json
@@ -5,7 +5,7 @@
"main": "lib/index.js",
"types": "index.d.ts",
7
"scripts": {
8
- "test": "node --test --allow-natives-syntax",
+ "test": "c8 node --test --allow-natives-syntax",
9
"test:types": "tsd -f types/types.test-d.ts",
10
"lint": "biome lint .",
11
"lint:ci": "biome ci .",
@@ -39,6 +39,10 @@
39
"devDependencies": {
40
"@biomejs/biome": "1.9.4",
41
"@types/node": "^20",
42
+ "c8": "^10.1.3",
43
"tsd": "^0.31.0"
44
+ },
45
+ "c8": {
46
+ "reporter": "lcov"
47
}
48
0 commit comments