From 7c926abb5a406325a51dff702d28cfa6ff9f2dbd Mon Sep 17 00:00:00 2001 From: kmdrGroch Date: Mon, 23 Sep 2019 22:54:16 +0200 Subject: [PATCH 1/2] fix typings problem --- packages/mutator-specification/package.json | 1 - packages/test-helpers/package.json | 1 - packages/util/package.json | 1 - packages/wct-runner/package.json | 1 - 4 files changed, 4 deletions(-) diff --git a/packages/mutator-specification/package.json b/packages/mutator-specification/package.json index b90ef8bbd9..3d41c6bcaa 100644 --- a/packages/mutator-specification/package.json +++ b/packages/mutator-specification/package.json @@ -13,7 +13,6 @@ "access": "public" }, "main": "src/index.js", - "typings": "src/index.ts", "author": "Nico Jansen ", "repository": { "type": "git", diff --git a/packages/test-helpers/package.json b/packages/test-helpers/package.json index 33f7fba94f..c36627b494 100644 --- a/packages/test-helpers/package.json +++ b/packages/test-helpers/package.json @@ -4,7 +4,6 @@ "version": "2.1.0", "description": "A helper package for testing", "main": "src/index.js", - "typings": "src/index.d.ts", "scripts": {}, "repository": { "type": "git", diff --git a/packages/util/package.json b/packages/util/package.json index 90987e6e0a..2edb4b7ae7 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -3,7 +3,6 @@ "version": "2.1.0", "description": "Contains utilities for Stryker, the mutation testing framework for JavaScript and friends", "main": "src/index.js", - "typings": "src/index.d.ts", "scripts": { "start": "tsc -w", "test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 90 --functions 95 --branches 75 npm run mocha", diff --git a/packages/wct-runner/package.json b/packages/wct-runner/package.json index 231d191bb0..d4eaa1b449 100644 --- a/packages/wct-runner/package.json +++ b/packages/wct-runner/package.json @@ -3,7 +3,6 @@ "version": "2.1.0", "description": "A plugin to use web component tester as a test runner for Stryker, the mutation testing framework for JavaScript and friends", "main": "src/index.js", - "typings": "src/index.d.ts", "scripts": { "start": "tsc -w", "test": "cross-env LAUNCHPAD_BROWSERS=chrome nyc --reporter=html --report-dir=reports/coverage --lines 95 --functions 95 --branches 95 npm run mocha", From 50a8f159cd96a752eea808c0222ad58ac07bdc7a Mon Sep 17 00:00:00 2001 From: Nico Jansen Date: Sat, 9 Nov 2019 01:23:15 +0100 Subject: [PATCH 2/2] Remove 2 more useless typings --- packages/core/package.json | 1 - packages/html-reporter/package.json | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index d1769a5673..7239bc31b4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,6 @@ "version": "2.2.1", "description": "The extendable JavaScript mutation testing framework", "main": "src/Stryker.js", - "typings": "src/Stryker.d.ts", "scripts": { "start": "tsc -w", "test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 80 --functions 80 --branches 75 npm run mocha", diff --git a/packages/html-reporter/package.json b/packages/html-reporter/package.json index b8cb6138a6..b135d9904d 100644 --- a/packages/html-reporter/package.json +++ b/packages/html-reporter/package.json @@ -3,7 +3,6 @@ "version": "2.2.1", "description": "An html reporter for the JavaScript mutation testing framework Stryker", "main": "src/index.js", - "typings": "src/index.d.ts", "scripts": { "test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 95 --functions 95 --branches 90 npm run mocha", "mocha": "mocha \"test/helpers/**/*.js\" \"test/unit/**/*.js\" && mocha --timeout 20000 \"test/helpers/**/*.js\" \"test/integration/**/*.js\""