Skip to content

Commit a7849dc

Browse files
brianccharmander
andauthored
Drop support for EOL versions of node (#2062)
* Drop support for EOL versions of node * Re-add testing for [email protected] * Revert changes to .travis.yml * Update packages/pg-pool/package.json Co-Authored-By: Charmander <[email protected]> Co-authored-by: Charmander <[email protected]>
1 parent 5cf8f5f commit a7849dc

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Diff for: packages/pg-pool/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
"pg-cursor": "^1.3.0"
3535
},
3636
"peerDependencies": {
37-
"pg": ">5.0"
37+
"pg": ">=8.0"
3838
}
3939
}

Diff for: packages/pg/Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,4 @@ test-pool:
6262

6363
lint:
6464
@echo "***Starting lint***"
65-
node -e "process.exit(Number(process.versions.node.split('.')[0]) < 8 ? 0 : 1)" \
66-
&& echo "***Skipping lint (node version too old)***" \
67-
|| node_modules/.bin/eslint lib
65+
node_modules/.bin/eslint lib

Diff for: packages/pg/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
],
5252
"license": "MIT",
5353
"engines": {
54-
"node": ">= 4.5.0"
54+
"node": ">= 8.0.0"
5555
}
5656
}

0 commit comments

Comments
 (0)