Skip to content

Commit

Permalink
fix(package.json): remove node restriction
Browse files Browse the repository at this point in the history
ci(travis): add node 14, 16 switch to --ignore-engines

see TypeFox/find-git-exec#22
  • Loading branch information
duncdrum committed Jul 30, 2021
1 parent a096ecd commit 88f822f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ node_js:
- "10"
- "12"
- "14"
- "16"

git:
depth: 1
Expand All @@ -22,6 +23,6 @@ branches:
only:
- master

install: yarn
install: yarn install --ignore-engines

script: yarn build && yarn test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "lib/index",
"typings": "lib/index",
"engines": {
"node": ">=10.11.0 <13"
"node": ">=10.11.0"
},
"scripts": {
"build": "tsc && tslint -c ./tslint.json --project ./tsconfig.json",
Expand Down

0 comments on commit 88f822f

Please sign in to comment.