stryker-api
Advanced tools
Comparing version 0.7.0 to 0.8.0
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
<a name="0.8.0"></a> | ||
# [0.8.0](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.7.0...stryker-api@0.8.0) (2017-08-25) | ||
### Code Refactoring | ||
* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) | ||
### BREAKING CHANGES | ||
* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. | ||
<a name="0.7.0"></a> | ||
@@ -7,0 +23,0 @@ # [0.7.0](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.6.0...stryker-api@0.7.0) (2017-08-11) |
export { default as Config } from './src/config/Config'; | ||
export { default as ConfigWriter } from './src/config/ConfigWriter'; | ||
export { default as ConfigWriterFactory } from './src/config/ConfigWriterFactory'; | ||
export { default as ConfigEditor } from './src/config/ConfigEditor'; | ||
export { default as ConfigEditorFactory } from './src/config/ConfigEditorFactory'; |
@@ -5,4 +5,4 @@ "use strict"; | ||
exports.Config = Config_1.default; | ||
var ConfigWriterFactory_1 = require("./src/config/ConfigWriterFactory"); | ||
exports.ConfigWriterFactory = ConfigWriterFactory_1.default; | ||
var ConfigEditorFactory_1 = require("./src/config/ConfigEditorFactory"); | ||
exports.ConfigEditorFactory = ConfigEditorFactory_1.default; | ||
//# sourceMappingURL=config.js.map |
{ | ||
"name": "stryker-api", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
"scripts": { | ||
"start": "tsc -w", | ||
"prebuild": "rimraf \"+(*.js|*.map)\" \"src/**/+(*.js|*.map)\" \"test/**/+(*.js|*.map)\" \"testResources/module/+(*.js|*.map)\" \"testResources/module/node_modules/stryker-api\"", | ||
"clean": "rimraf \"+(*.d.ts|*.js|*.map)\" \"src/**/+(*.d.ts|*.js|*.map)\" \"test/**/+(*.d.ts|*.js|*.map)\" \"testResources/module/+(*.d.ts|*.js|*.map)\" \"testResources/module/node_modules/stryker-api\" .nyc_output reports", | ||
"prebuild": "npm run clean", | ||
"build": "tsc -p .", | ||
@@ -9,0 +10,0 @@ "postbuild": "tslint -p tsconfig.json", |
@@ -17,3 +17,3 @@ [![Build Status](https://travis-ci.org/stryker-mutator/stryker.svg?branch=master)](https://travis-ci.org/stryker-mutator/stryker) | ||
4. Create a `TestRunner` to bridge the gap between your test runner and Stryker | ||
5. Create a custom way of configuring Stryker by creating a `ConfigWriter` | ||
5. Create a custom way of configuring Stryker by creating a `ConfigEditor` | ||
@@ -20,0 +20,0 @@ All extension points work in the same basic way. |
62285