Skip to content

Commit fc0bb3c

Browse files
chore: Update Node minimum version to 14
BREAKING CHANGE: documentation.js will now require node 14 or later.
1 parent ed48723 commit fc0bb3c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ workflows:
22
version: 2
33
node-multi-build:
44
jobs:
5-
- node-v12
5+
- node-v14
66

77
version: 2
88
jobs:
@@ -29,7 +29,7 @@ jobs:
2929
key: npm-packages-{{ .Branch }}-{{ checksum "package-lock.json" }}
3030
paths:
3131
- node_modules/
32-
node-v12:
32+
node-v14:
3333
<<: *node-base
3434
docker:
35-
- image: node:12
35+
- image: node:14

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"documentation": "./bin/documentation.js"
99
},
1010
"dependencies": {
11-
"@babel/core": "7.15.8",
12-
"@babel/generator": "7.15.4",
13-
"@babel/parser": "7.15.4",
11+
"@babel/core": "^7.15.8",
12+
"@babel/generator": "^7.15.4",
13+
"@babel/parser": "^7.15.4",
1414
"@babel/traverse": "^7.14.0",
1515
"@babel/types": "^7.14.1",
1616
"ansi-html": "^0.0.7",
@@ -116,7 +116,7 @@
116116
}
117117
},
118118
"engines": {
119-
"node": ">=10"
119+
"node": ">=14"
120120
},
121121
"lint-staged": {
122122
"*.js": [

0 commit comments

Comments
 (0)