Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Apr 6, 2024
1 parent b657044 commit c000db3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion jsdoc/templates/custom/tmpl/properties.tmpl
Expand Up @@ -7,7 +7,7 @@
props.forEach(function(prop, i) {
if (!prop) { return; }
if ( parentProp && prop.name && prop.name.indexOf(parentProp.name + '.') === 0 ) {
prop.name = prop.name.substr(parentProp.name.length+1);
prop.name = prop.name.substring(parentProp.name.length + 1);
parentProp.subprops = parentProp.subprops || [];
parentProp.subprops.push(prop);
props[i] = null;
Expand Down
14 changes: 7 additions & 7 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "pg-promise",
"version": "11.5.5",
"version": "11.6.0",
"description": "PostgreSQL interface for Node.js",
"main": "lib/index.js",
"typings": "typescript/pg-promise.d.ts",
Expand Down Expand Up @@ -42,22 +42,22 @@
},
"dependencies": {
"assert-options": "0.8.1",
"pg": "8.11.3",
"pg": "8.11.5",
"pg-minify": "1.6.3",
"spex": "3.3.0"
},
"devDependencies": {
"@types/node": "20.5.2",
"@types/node": "20.12.5",
"bluebird": "3.7.2",
"coveralls": "3.1.1",
"cspell": "8.6.0",
"eslint": "8.57.0",
"cspell": "8.6.1",
"eslint": "9.0.0",
"istanbul": "0.4.5",
"jasmine-node": "3.0.0",
"jsdoc": "4.0.2",
"JSONStream": "1.3.5",
"pg-query-stream": "4.5.3",
"pg-query-stream": "4.5.5",
"tslint": "6.1.3",
"typescript": "5.4.3"
"typescript": "5.4.4"
}
}

0 comments on commit c000db3

Please sign in to comment.