Skip to content

Commit

Permalink
Breaking: Drop Node.js 8 support (#1545)
Browse files Browse the repository at this point in the history
The minimum supported Node.js version is 10.
  • Loading branch information
sapegin committed Mar 5, 2020
1 parent 6112646 commit 847f917
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
v8
v10
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: node_js
node_js:
- 12
- 10
- 8

addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Expand Up @@ -27,7 +27,7 @@ module.exports = {
useBuiltIns: 'usage',
corejs: 3,
targets: {
node: '8.9',
node: '10',
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"scripts": {
"styleguide": "styleguidist server",
Expand Down
2 changes: 1 addition & 1 deletion examples/cra/package.json
Expand Up @@ -13,7 +13,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"devDependencies": {
"react-scripts": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/customised/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"dependencies": {
"dog-names": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/express/package.json
Expand Up @@ -13,7 +13,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"dependencies": {
"lodash": "^4.17.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/preact/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"dependencies": {
"dog-names": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/sections/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"dependencies": {
"add": "^2.0.6",
Expand Down
2 changes: 1 addition & 1 deletion examples/styled-components/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"scripts": {
"styleguide": "styleguidist server",
Expand Down
2 changes: 1 addition & 1 deletion examples/themed/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"scripts": {
"styleguide": "styleguidist server",
Expand Down
2 changes: 1 addition & 1 deletion examples/webpack/package.json
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=10"
},
"dependencies": {
"css-loader": "^0.28.11",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,7 +24,7 @@
"templates"
],
"engines": {
"node": ">=8.9"
"node": ">=10"
},
"dependencies": {
"@vxna/mini-html-webpack-template": "^1.0.0",
Expand Down

0 comments on commit 847f917

Please sign in to comment.