Skip to content

Commit

Permalink
Drop support for EOL versions of node (#2062)
Browse files Browse the repository at this point in the history
* Drop support for EOL versions of node

* Re-add testing for node@8.x

* Revert changes to .travis.yml

* Update packages/pg-pool/package.json

Co-Authored-By: Charmander <~@charmander.me>

Co-authored-by: Charmander <~@charmander.me>
  • Loading branch information
brianc and charmander committed Jan 28, 2020
1 parent 3f6760c commit c909aa6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/pg-pool/package.json
Expand Up @@ -34,6 +34,6 @@
"pg-cursor": "^1.3.0"
},
"peerDependencies": {
"pg": ">5.0"
"pg": ">=8.0"
}
}
4 changes: 1 addition & 3 deletions packages/pg/Makefile
Expand Up @@ -62,6 +62,4 @@ test-pool:

lint:
@echo "***Starting lint***"
node -e "process.exit(Number(process.versions.node.split('.')[0]) < 8 ? 0 : 1)" \
&& echo "***Skipping lint (node version too old)***" \
|| node_modules/.bin/eslint lib
node_modules/.bin/eslint lib
2 changes: 1 addition & 1 deletion packages/pg/package.json
Expand Up @@ -51,6 +51,6 @@
],
"license": "MIT",
"engines": {
"node": ">= 4.5.0"
"node": ">= 8.0.0"
}
}

0 comments on commit c909aa6

Please sign in to comment.