Skip to content

Commit 0121df0

Browse files
committed
feat: Drop support for Node v8.x
BREAKING CHANGE: The minimum supported version of Node is now v10.17.0 (v10 LTS).
1 parent eb8958e commit 0121df0

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"license": "MIT",
3838
"homepage": "https://github.com/zillow/javascript",
3939
"engines": {
40-
"node": ">= 8.9.0"
40+
"node": ">= 10.17"
4141
},
4242
"jest": {
4343
"testEnvironment": "node",

packages/eslint-config-zillow-base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"license": "MIT",
3131
"homepage": "https://github.com/zillow/javascript/tree/latest/packages/eslint-config-zillow-base#readme",
3232
"engines": {
33-
"node": ">= 8.9.0"
33+
"node": ">= 10.17"
3434
},
3535
"peerDependencies": {
3636
"@typescript-eslint/eslint-plugin": "^2.29.0",

packages/eslint-config-zillow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"license": "MIT",
3131
"homepage": "https://github.com/zillow/javascript/tree/latest/packages/eslint-config-zillow#readme",
3232
"engines": {
33-
"node": ">= 8.9.0"
33+
"node": ">= 10.17"
3434
},
3535
"peerDependencies": {
3636
"@typescript-eslint/eslint-plugin": "^2.29.0",

packages/eslint-plugin-zillow/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
],
1515
"author": "Daniel Stockman <[email protected]> (https://twitter.com/@evocateur)",
1616
"homepage": "https://github.com/zillow/javascript/tree/latest/packages/eslint-plugin-zillow#readme",
17+
"engines": {
18+
"node": ">= 10.17"
19+
},
1720
"license": "MIT",
1821
"main": "lib/eslint-plugin-zillow.js",
1922
"files": [

0 commit comments

Comments
 (0)