From 589d2a5b39806a9c52026caa4b741a44d3d19c47 Mon Sep 17 00:00:00 2001 From: Sebastian Riedel Date: Mon, 25 Sep 2023 17:42:29 +0200 Subject: [PATCH] Add the redundant tap option that is now required for no reason --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 231d6f3a..e95ea451 100644 --- a/package.json +++ b/package.json @@ -32,14 +32,14 @@ "build:test": "npm run build && npm test", "build:watch": "npm run build -- --watch", "clean": "rm -rf tsconfig.tsbuildinfo test/support/ts/full-app/tsconfig.tsbuildinfo lib test/support/ts/full-app/lib", - "coverage": "c8 tap --disable-coverage test/*.js", - "coverage:ci": "c8 --reporter lcovonly tap --disable-coverage test/*.js", + "coverage": "c8 tap --disable-coverage --allow-empty-coverage test/*.js", + "coverage:ci": "c8 --reporter lcovonly tap --disable-coverage --allow-empty-coverage test/*.js", "lint": "eslint \"test/*.js\" \"test/support/js/**/*.js\" \"test/support/ts/**/src/**/*.ts\" \"src/**/*.ts\" \"src/*.ts\"", "lint:fix": "npm run lint -- --fix", "prepublishOnly": "npm run build", "publish:minor": "npm version minor && npm publish", "publish:patch": "npm version patch && npm publish", - "test": "tap --disable-coverage test/*.js" + "test": "tap --disable-coverage --allow-empty-coverage test/*.js" }, "exports": "./lib/core.js", "types": "./lib/core.d.ts",