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 82f31fe commit 59fd8a0Copy full SHA for 59fd8a0
.gitignore
@@ -2,6 +2,7 @@
2
/example/dist
3
/example/.cache
4
/lib
5
+/coverage
6
node_modules
7
package-lock.json
8
pnpm-lock.yaml
package.json
@@ -37,6 +37,7 @@
37
"@types/mocha": "^5.2.7",
38
"@types/node": "^10.5.2",
39
"@types/react": "16.9.49",
40
+ "c8": "^7.11.0",
41
"mocha": "^6.2.0",
42
"prettier": "^2.1.2",
43
"react": "16.13.1",
@@ -55,6 +56,7 @@
55
56
"compile": "npm run compile-cjs && npm run compile-es6",
57
"compile-cjs": "tsc --module commonjs --outDir ./lib/cjs",
58
"compile-es6": "echo 'TODO' : tsc --module es6 --outDir ./lib/es6",
59
+ "coverage": "c8 --reporter=lcov npm test",
60
"prepublishOnly": "npm run compile",
61
"test": "mocha test/*.ts --require ts-node/register --recursive"
62
}
0 commit comments