Skip to content

Commit efb9ae6

Browse files
authored
chore: require Node >=10.2 (#53)
1 parent a5d1413 commit efb9ae6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: 2
22

33
jobs:
4-
test_node_8:
4+
test_node_10:
55
docker:
6-
- image: circleci/node:8
6+
- image: circleci/node:10
77
steps:
88
- checkout
99
- run:
@@ -24,7 +24,7 @@ jobs:
2424
2525
release:
2626
docker:
27-
- image: circleci/node:8
27+
- image: circleci/node:10
2828
steps:
2929
- checkout
3030
- run: yarn
@@ -35,10 +35,10 @@ workflows:
3535
version: 2
3636
test_and_release:
3737
jobs:
38-
- test_node_8
38+
- test_node_10
3939
- release:
4040
filters:
4141
branches:
4242
only: master
4343
requires:
44-
- test_node_8
44+
- test_node_10

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
]
3737
},
3838
"engines": {
39-
"node": ">=8.3.0"
39+
"node": ">=10.2"
4040
},
4141
"bin": {
4242
"sl-scripts": "./bin/run"

0 commit comments

Comments
 (0)