Skip to content

Commit

Permalink
Merge branch 'master' into feat/async-dispose
Browse files Browse the repository at this point in the history
  • Loading branch information
nicojs committed Jul 2, 2019
2 parents bba9d3e + ff2ccfc commit 7cceddf
Show file tree
Hide file tree
Showing 25 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -35,8 +35,8 @@
"sinon": "^7.2.0",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.6",
"tslint": "~5.16.0",
"typescript": "~3.5.1"
"tslint": "~5.17.0",
"typescript": "~3.5.2"
},
"prettier": {
"singleQuote": true
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"mutation-testing-report-schema": "^1.0.0",
"tslib": "~1.9.3"
"tslib": "~1.10.0"
},
"devDependencies": {
"surrial": "~1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Expand Up @@ -72,9 +72,9 @@
"source-map": "~0.7.3",
"surrial": "~1.0.0",
"tree-kill": "~1.2.0",
"tslib": "~1.9.3",
"tslib": "~1.10.0",
"typed-inject": "~2.0.0",
"typed-rest-client": "~1.4.0"
"typed-rest-client": "~1.5.0"
},
"devDependencies": {
"@stryker-mutator/api": "^0.24.1",
Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion packages/html-reporter/src/templates/index.html
Expand Up @@ -2,6 +2,7 @@
<html>

<head>
<meta charset="utf-8">
<script src="mutation-test-elements.js"></script>
</head>

Expand All @@ -15,4 +16,4 @@
<script src="bind-mutation-test-report.js"></script>
</body>

</html>
</html>
2 changes: 1 addition & 1 deletion packages/javascript-mutator/package.json
Expand Up @@ -42,7 +42,7 @@
"@babel/traverse": "~7.4.0",
"@stryker-mutator/api": "^2.0.0",
"lodash": "~4.17.4",
"tslib": "~1.9.3"
"tslib": "~1.10.0"
},
"peerDependencies": {
"@stryker-mutator/core": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/karma-runner/package.json
Expand Up @@ -48,7 +48,7 @@
"@stryker-mutator/api": "^2.0.0",
"decamelize": "^3.0.0",
"semver": "~6.1.0",
"tslib": "~1.9.3"
"tslib": "~1.10.0"
},
"contributors": [
"nicojs <jansennico@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/mocha-framework/package.json
Expand Up @@ -37,7 +37,7 @@
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/mocha-framework#readme",
"license": "Apache-2.0",
"devDependencies": {
"tslib": "~1.9.3"
"tslib": "~1.10.0"
},
"peerDependencies": {
"@stryker-mutator/core": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/mocha-runner/package.json
Expand Up @@ -37,7 +37,7 @@
"dependencies": {
"@stryker-mutator/api": "^2.0.0",
"multimatch": "~4.0.0",
"tslib": "~1.9.3"
"tslib": "~1.10.0"
},
"devDependencies": {
"@stryker-mutator/test-helpers": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript/package.json
Expand Up @@ -40,7 +40,7 @@
"@stryker-mutator/util": "^2.0.0",
"lodash.flatmap": "~4.5.0",
"semver": "~6.1.0",
"tslib": "~1.9.3"
"tslib": "~1.10.0"
},
"devDependencies": {
"@stryker-mutator/mutator-specification": "^2.0.0",
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/webpack-transpiler/package.json
Expand Up @@ -38,8 +38,8 @@
"@stryker-mutator/test-helpers": "^2.0.0",
"@types/memory-fs": "~0.3.0",
"@types/webpack": "~4.4.12",
"raw-loader": "~2.0.0",
"webpack": "~4.32.2"
"raw-loader": "~3.0.0",
"webpack": "~4.34.0"
},
"peerDependencies": {
"@stryker-mutator/core": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion perf/tasks/run-perf-tests.ts
Expand Up @@ -36,7 +36,7 @@ function execNpm(args: string[], testDir: string): Observable<string> {
console.log(`Exec ${testDir} npm ${args.join(' ')}`);

return new Observable(observer => {
const testProcess = execa('npm', args, { timeout: 500000, cwd: currentTestDir, stdio: 'pipe' });
const testProcess = execa('npm', args, { timeout: 0, cwd: currentTestDir, stdio: 'pipe' });
let stderr = '';
testProcess.stderr.on('data', chunk => stderr += chunk.toString());
testProcess.stdout.on('data', chunk => observer.next(chunk.toString().trim()));
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.lint.json
@@ -1,8 +1,8 @@
{
"extends": "tsconfig.settings.json",
"extends": "./tsconfig.settings.json",
// This file is a workaround for: https://github.com/palantir/tslint/issues/4137
"include": [
"packages/*/src",
"packages/*/test"
]
}
}

0 comments on commit 7cceddf

Please sign in to comment.