Skip to content

Commit

Permalink
BREAKING CHANGE: Bump minimum node version to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Aug 9, 2020
1 parent a0a8f14 commit 2f8d295
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,12 @@ sudo: false
language: node_js

node_js:
- 8
- 10
- 12
- 14

before_install:
- npm install --global npm@
before_install: >
node_version=$(node -v);
if [ ${node_version:1:1} = 6 ]; then
npm install --global npm@^4
else
npm install --global npm@latest
fi

script:
- npm run build_and_test
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"url": "https://github.com/TypeStrong/TypeDoc/issues"
},
"engines": {
"node": ">= 8.0.0"
"node": ">= 10.0.0"
},
"dependencies": {
"fs-extra": "^8.1.0",
Expand Down

0 comments on commit 2f8d295

Please sign in to comment.