Comparing version 0.22.3 to 0.22.4
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="0.22.4"></a> | ||
## [0.22.4](https://github.com/stryker-mutator/stryker/compare/stryker@0.22.3...stryker@0.22.4) (2018-04-20) | ||
### Bug Fixes | ||
* **Sandbox:** make sure .stryker-tmp does not appear in the sandbox ([#716](https://github.com/stryker-mutator/stryker/issues/716)) ([48acc2c](https://github.com/stryker-mutator/stryker/commit/48acc2c)), closes [#698](https://github.com/stryker-mutator/stryker/issues/698) | ||
<a name="0.22.3"></a> | ||
@@ -8,0 +19,0 @@ ## [0.22.3](https://github.com/stryker-mutator/stryker/compare/stryker@0.22.2...stryker@0.22.3) (2018-04-20) |
{ | ||
"name": "stryker", | ||
"version": "0.22.3", | ||
"version": "0.22.4", | ||
"description": "The extendable JavaScript mutation testing framework", | ||
@@ -5,0 +5,0 @@ "main": "src/Stryker.js", |
@@ -203,3 +203,3 @@ [![Build Status](https://travis-ci.org/stryker-mutator/stryker.svg?branch=master)](https://travis-ci.org/stryker-mutator/stryker) | ||
**Config file:** `files: ['src/**/*.js', '!src/**/index.js', 'test/**/*.js']` | ||
**Default value:** result of `git ls-files --others --exclude-standard --cached` | ||
**Default value:** result of `git ls-files --others --exclude-standard --cached --exclude .stryker-tmp` | ||
**Mandatory:** No | ||
@@ -209,3 +209,3 @@ **Description:** | ||
This is normally not needed as it defaults to all files not ignored by git. | ||
Try it out yourself with this command: `git ls-files --others --exclude-standard --cached`. | ||
Try it out yourself with this command: `git ls-files --others --exclude-standard --cached --exclude .stryker-tmp`. | ||
@@ -212,0 +212,0 @@ If you do need to override `files` (for example: when your project does not live in a git repository), |
@@ -56,3 +56,3 @@ "use strict"; | ||
InputFileResolver.prototype.resolveFilesUsingGit = function () { | ||
return child_process_1.exec('git ls-files --others --exclude-standard --cached', { maxBuffer: 10 * 1000 * 1024 }) | ||
return child_process_1.exec('git ls-files --others --exclude-standard --cached --exclude .stryker-tmp', { maxBuffer: 10 * 1000 * 1024 }) | ||
.then(function (_a) { | ||
@@ -59,0 +59,0 @@ var stdout = _a[0]; |
351445