Skip to content

Commit

Permalink
fix(engines): remove support for node 6
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Nassri committed Nov 6, 2018
1 parent 4e4cdf6 commit ec1c9a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
15 changes: 1 addition & 14 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ executors:
docker:
- image: ahmadnassri/build-essential

node-6:
docker:
- image: node:6-slim

node-8:
docker:
- image: node:8-slim
Expand Down Expand Up @@ -49,12 +45,6 @@ jobs:
- attach
- run: npm run lint

test-node-6:
executor: node-6
steps:
- attach
- run: npm run test

test-node-8:
executor: node-8
steps:
Expand Down Expand Up @@ -82,9 +72,6 @@ workflows:
- lint:
requires: [ build ]

- test-node-6:
requires: [ build ]

- test-node-8:
requires: [ build ]

Expand All @@ -93,7 +80,7 @@ workflows:

- release:
context: semantic-release
requires: [ build, lint, test-node-6, test-node-8, test-node-10 ]
requires: [ build, lint, test-node-8, test-node-10 ]
filters:
branches:
only: master
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"group"
],
"engines": {
"node": ">=4"
"node": ">=8"
},
"files": [
"lib",
Expand Down

0 comments on commit ec1c9a1

Please sign in to comment.