Socket
Socket
Sign inDemoInstall

@stryker-mutator/typescript-checker

Package Overview
Dependencies
189
Maintainers
4
Versions
69
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.5.1 to 5.6.0

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [5.6.0](https://github.com/stryker-mutator/stryker-js/compare/v5.5.1...v5.6.0) (2022-01-09)
### Bug Fixes
* **tsconfig:** force declarationDir false for non-build projects ([#3313](https://github.com/stryker-mutator/stryker-js/issues/3313)) ([461f39c](https://github.com/stryker-mutator/stryker-js/commit/461f39cc0808dbab2ad405a96193aa4586f7f699))
## [5.5.1](https://github.com/stryker-mutator/stryker-js/compare/v5.5.0...v5.5.1) (2021-12-02)

@@ -8,0 +19,0 @@

@@ -63,2 +63,7 @@ "use strict";

};
if (!useBuildMode && config.declarationDir !== undefined && config.declarationDir !== null) {
// because composite and/or declaration was disabled in non-build mode, we have to disable declarationDir as well
// otherwise, error TS5069: Option 'declarationDir' cannot be specified without specifying option 'declaration' or option 'composite'.
delete config.declarationDir;
}
return JSON.stringify(config);

@@ -65,0 +70,0 @@ }

12

package.json
{
"name": "@stryker-mutator/typescript-checker",
"version": "5.5.1",
"version": "5.6.0",
"description": "A typescript type checker plugin to be used in Stryker, the JavaScript mutation testing framework",

@@ -36,15 +36,15 @@ "main": "dist/src/index.js",

"dependencies": {
"@stryker-mutator/api": "5.5.1",
"@stryker-mutator/util": "5.5.1",
"@stryker-mutator/api": "5.6.0",
"@stryker-mutator/util": "5.6.0",
"semver": "~7.3.2"
},
"devDependencies": {
"@stryker-mutator/test-helpers": "5.5.1",
"@stryker-mutator/test-helpers": "5.6.0",
"@types/semver": "~7.3.3"
},
"peerDependencies": {
"@stryker-mutator/core": "~5.5.0",
"@stryker-mutator/core": "~5.6.0",
"typescript": ">=3.6"
},
"gitHead": "b18df4169d7aae921f38ddc62ed04ec26974a397"
"gitHead": "06d0dced6570f43d4ec2a1b2768d3d6cf8f0768a"
}

@@ -63,2 +63,9 @@ import path from 'path';

};
if (!useBuildMode && config.declarationDir !== undefined && config.declarationDir !== null) {
// because composite and/or declaration was disabled in non-build mode, we have to disable declarationDir as well
// otherwise, error TS5069: Option 'declarationDir' cannot be specified without specifying option 'declaration' or option 'composite'.
delete config.declarationDir;
}
return JSON.stringify(config);

@@ -65,0 +72,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc