Skip to content

Commit 85520de

Browse files
committed
adding coverage reports
1 parent 882014c commit 85520de

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"scripts": {
3131
"build": "npm run build:ts-types && npm run build:ts && npm run build:browser",
3232
"postbuild": "node ./postbuild.js",
33-
"build:ts": "npm test && npx tsc",
33+
"build:ts": "npm run coverage && npx tsc",
3434
"build:ts-types": "npx tsc --project tsconfig.d.json",
3535
"build:browser": "npm run build:esbuild",
3636
"build:esbuild": "node ./build-esbuild.js",
@@ -40,7 +40,7 @@
4040
"test": "(npm run lint && npm run test:jasmine)",
4141
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
4242
"lint": "(npx -y eslint@latest src/**/*.ts --fix )",
43-
"preversion": "npm cache verify && npm test",
43+
"preversion": "npm cache verify && npm run coverage",
4444
"sync": "git add . && git commit -am ",
4545
"postversion": "git push && git push --tags",
4646
"v-patch": "qcobjects v-patch",

public/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,4 +1056,6 @@ declare module "uniqueID" {
10561056
export const uniqueId: Function;
10571057
}
10581058
//# sourceMappingURL=index.d.ts.map
1059+
export {};
1060+
export {};
10591061
export {};

0 commit comments

Comments
 (0)