@stryker-mutator/api
Advanced tools
Comparing version 2.4.0 to 2.5.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [2.5.0](https://github.com/stryker-mutator/stryker/compare/v2.4.0...v2.5.0) (2020-01-12) | ||
### Features | ||
* **.gitignore:** add Stryker patterns to .gitignore file during initialization ([#1848](https://github.com/stryker-mutator/stryker/issues/1848)) ([854aee0](https://github.com/stryker-mutator/stryker/commit/854aee0)) | ||
# [2.4.0](https://github.com/stryker-mutator/stryker/compare/v2.3.0...v2.4.0) (2019-11-24) | ||
@@ -8,0 +19,0 @@ |
export { default as Config } from './src/config/Config'; | ||
export { default as ConfigEditor } from './src/config/ConfigEditor'; | ||
export { default as defaultTempDirName } from './src/config/DefaultTempDirName'; | ||
//# sourceMappingURL=config.d.ts.map |
@@ -5,2 +5,4 @@ "use strict"; | ||
exports.Config = Config_1.default; | ||
var DefaultTempDirName_1 = require("./src/config/DefaultTempDirName"); | ||
exports.defaultTempDirName = DefaultTempDirName_1.default; | ||
//# sourceMappingURL=config.js.map |
{ | ||
"name": "@stryker-mutator/api", | ||
"version": "2.4.0", | ||
"version": "2.5.0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
@@ -48,3 +48,3 @@ "repository": { | ||
}, | ||
"gitHead": "b36b2234798390e3674576bf3142718b576ad55c" | ||
"gitHead": "4324efe1cc352694494f6bf75ca95c753bdd564a" | ||
} |
@@ -5,2 +5,3 @@ "use strict"; | ||
const DashboardOptions_1 = require("../core/DashboardOptions"); | ||
const DefaultTempDirName_1 = require("./DefaultTempDirName"); | ||
class Config { | ||
@@ -39,3 +40,3 @@ constructor() { | ||
}; | ||
this.tempDirName = '.stryker-tmp'; | ||
this.tempDirName = DefaultTempDirName_1.default; | ||
} | ||
@@ -42,0 +43,0 @@ set(newConfig) { |
@@ -83,5 +83,5 @@ import LogLevel from './LogLevel'; | ||
* | ||
* 'perTest' (default): Analyse coverage per test. | ||
* 'perTest': Analyse coverage per test. | ||
* 'all': Analyse the coverage for the entire test suite. | ||
* 'off': Don't use coverage analysis | ||
* 'off' (default): Don't use coverage analysis | ||
*/ | ||
@@ -88,0 +88,0 @@ coverageAnalysis: 'perTest' | 'all' | 'off'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
95374
97
1446