Skip to content

Commit

Permalink
feat: drop support for node.js 6, add 12
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This release drops support for node.js 6, which is EOL. Please upgrade with care ❤️
  • Loading branch information
JustinBeckwith authored Apr 26, 2019
1 parent f977f21 commit 78ea044
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ workflows:
version: 2
test:
jobs:
- node6
- node8
- node10
- node11
- node12
- lint
- commit_lint
- publish_npm:
requires:
- node6
- node8
- node10
- node11
- node12
- lint
- commit_lint
filters:
Expand All @@ -28,11 +28,6 @@ unit_tests: &unit_tests
- run: npm test

jobs:
node6:
docker:
- image: node:6
user: node
<<: *unit_tests
node8:
docker:
- image: node:8
Expand All @@ -48,6 +43,11 @@ jobs:
- image: node:11
user: node
<<: *unit_tests
node12:
docker:
- image: node:12
user: node
<<: *unit_tests
lint:
docker:
- image: node:11
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 78ea044

Please sign in to comment.