Skip to content

Commit

Permalink
chore: Update Node minimum version to 14
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
documentation.js will now require node 14 or later.
  • Loading branch information
anthony-redFox committed Oct 12, 2021
1 parent ed48723 commit fc0bb3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workflows:
version: 2
node-multi-build:
jobs:
- node-v12
- node-v14

version: 2
jobs:
Expand All @@ -29,7 +29,7 @@ jobs:
key: npm-packages-{{ .Branch }}-{{ checksum "package-lock.json" }}
paths:
- node_modules/
node-v12:
node-v14:
<<: *node-base
docker:
- image: node:12
- image: node:14
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"documentation": "./bin/documentation.js"
},
"dependencies": {
"@babel/core": "7.15.8",
"@babel/generator": "7.15.4",
"@babel/parser": "7.15.4",
"@babel/core": "^7.15.8",
"@babel/generator": "^7.15.4",
"@babel/parser": "^7.15.4",
"@babel/traverse": "^7.14.0",
"@babel/types": "^7.14.1",
"ansi-html": "^0.0.7",
Expand Down Expand Up @@ -116,7 +116,7 @@
}
},
"engines": {
"node": ">=10"
"node": ">=14"
},
"lint-staged": {
"*.js": [
Expand Down

0 comments on commit fc0bb3c

Please sign in to comment.