Skip to content

Commit de1c45c

Browse files
committed
update deps
1 parent e6b540d commit de1c45c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/utils/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function isText(txt) {
3131
// Proper configuration is having NODE_ENV = 'development', but this
3232
// method only checks for 'dev' being present, and regardless of the case.
3333
function isDev() {
34-
const env = global.process.env['NODE_ENV'] || '';
34+
const env = process.env.NODE_ENV || '';
3535
return env.toLowerCase().indexOf('dev') !== -1;
3636
}
3737

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-promise",
3-
"version": "11.12.1",
3+
"version": "11.13.0",
44
"description": "PostgreSQL interface for Node.js",
55
"main": "lib/index.js",
66
"typings": "typescript/pg-promise.d.ts",
@@ -42,12 +42,12 @@
4242
},
4343
"dependencies": {
4444
"assert-options": "0.8.2",
45-
"pg": "8.14.0",
45+
"pg": "8.14.1",
4646
"pg-minify": "1.7.0",
4747
"spex": "3.4.0"
4848
},
4949
"peerDependencies": {
50-
"pg-query-stream": "4.8.0"
50+
"pg-query-stream": "4.8.1"
5151
},
5252
"devDependencies": {
5353
"@eslint/js": "9.22.0",

0 commit comments

Comments
 (0)