Comparing version 0.24.0 to 0.24.1
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="0.24.1"></a> | ||
## [0.24.1](https://github.com/stryker-mutator/stryker/compare/stryker@0.24.0...stryker@0.24.1) (2018-05-31) | ||
### Bug Fixes | ||
* **Peer dep:** set correct stryker-api peer dependency ([#830](https://github.com/stryker-mutator/stryker/issues/830)) ([af973a1](https://github.com/stryker-mutator/stryker/commit/af973a1)) | ||
<a name="0.24.0"></a> | ||
@@ -8,0 +19,0 @@ # [0.24.0](https://github.com/stryker-mutator/stryker/compare/stryker@0.23.0...stryker@0.24.0) (2018-05-21) |
{ | ||
"name": "stryker", | ||
"version": "0.24.0", | ||
"version": "0.24.1", | ||
"description": "The extendable JavaScript mutation testing framework", | ||
@@ -81,7 +81,7 @@ "main": "src/Stryker.js", | ||
"@types/progress": "^2.0.1", | ||
"stryker-api": "^0.17.1" | ||
"stryker-api": "^0.17.2" | ||
}, | ||
"peerDependencies": { | ||
"stryker-api": "^0.16.0" | ||
"stryker-api": ">=0.15.0 <0.18.0" | ||
} | ||
} |
@@ -55,3 +55,3 @@ "use strict"; | ||
StrykerConfigWriter.prototype.wrapInModule = function (configObject) { | ||
return prettier_1.format("\n module.exports = function(config){\n config.set(\n " + JSON.stringify(configObject, null, 2) + "\n );\n }"); | ||
return prettier_1.format("\n module.exports = function(config){\n config.set(\n " + JSON.stringify(configObject, null, 2) + "\n );\n }", { parser: 'babylon' }); | ||
}; | ||
@@ -58,0 +58,0 @@ return StrykerConfigWriter; |
359447