From a39d8c198a62fb805be66603a26f100d52467393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sas=CC=8Ca=20Jovanic=CC=81?= Date: Sun, 14 Apr 2024 00:23:18 +0200 Subject: [PATCH] Fix issue with c8 --- .gitignore | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 58b0728..45f3207 100755 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ jsnext build npm-debug.log .log +test.lcov diff --git a/package.json b/package.json index 935a059..90bf641 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "build-bower": "rm -rf dist && npx tsc src/*.ts --declaration --target es2017 --module amd --outDir ./dist/", "build-module": "rm -rf jsnext && npx tsc src/*.ts --target es2017 --module es2020 --outDir ./jsnext/", "test": "npm run build && mocha 'test/**/*.js'", - "coverage": "c8 mocha && nyc report --reporter=text-lcov > test.lcov", + "coverage": "c8 mocha && c8 report --reporter=text-lcov > test.lcov", "lint": "eslint 'src/**/*.ts' 'test/**/*.js'", "prepare": "npm run build-node", "docs": "typedoc src/ibantools.ts",