Skip to content

Commit

Permalink
feat(node): Drop support for node 10 (#2879)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node 10 is no longer supported. Please use Node 12 or higher.
  • Loading branch information
nicojs committed May 7, 2021
1 parent 5114835 commit dd29f88
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -62,7 +62,7 @@
"release": "lerna version"
},
"engines": {
"node": ">=10",
"node": ">=12",
"npm": ">=5"
}
}
2 changes: 1 addition & 1 deletion packages/api/package.json
Expand Up @@ -36,7 +36,7 @@
},
"homepage": "https://stryker-mutator.io/",
"engines": {
"node": ">=10"
"node": ">=12"
},
"dependencies": {
"mutation-testing-report-schema": "1.7.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Expand Up @@ -17,7 +17,7 @@
"directory": "packages/core"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"keywords": [
"mutation testing",
Expand Down
2 changes: 1 addition & 1 deletion packages/instrumenter/package.json
Expand Up @@ -14,7 +14,7 @@
"directory": "packages/instrumenter"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/jasmine-runner/package.json
Expand Up @@ -15,7 +15,7 @@
]
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-runner/package.json
Expand Up @@ -16,7 +16,7 @@
"directory": "packages/jest-runner"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"keywords": [
"stryker",
Expand Down
2 changes: 1 addition & 1 deletion packages/karma-runner/package.json
Expand Up @@ -16,7 +16,7 @@
"directory": "packages/karma-runner"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"keywords": [
"stryker",
Expand Down
2 changes: 1 addition & 1 deletion packages/mocha-runner/package.json
Expand Up @@ -16,7 +16,7 @@
"directory": "packages/mocha-runner"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"keywords": [
"stryker",
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-checker/package.json
Expand Up @@ -17,7 +17,7 @@
"directory": "packages/typescript-checker"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit dd29f88

Please sign in to comment.