Skip to content

Commit

Permalink
docs + deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Jul 24, 2020
1 parent ebb46fb commit 10621d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Unlike the default URL parser, this one supports the following:
* `localhost:12345` => `{hosts: [{name: 'localhost', port: 12345, type: 'domain'}]`
* `[12ab:34cd]:123` => `{hosts: [{name: '[12ab:34cd]', port: 123, type: 'IPv6'}]`
* `abc:///one?p1=val` => `{protocol: 'abc', path: ['one'], params: {p1: 'val'}}`
* `:12345` => `{hosts: [{port: 12345}]`
* `:12345` => `{hosts: [{port: 12345}]}`
* `username@` => `{user: 'username'}`
* `:pass123@` => `{password: 'pass123'}`
* `/one/two` => `{path: ['one', 'two']}`
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "connection-string",
"version": "3.4.1",
"version": "3.4.2",
"description": "Advanced URL Connection String parser + generator.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -38,9 +38,9 @@
"npm": ">=2.15"
},
"devDependencies": {
"@types/chai": "4.2.11",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.0",
"@types/node": "14.0.23",
"@types/node": "14.0.25",
"chai": "4.2.0",
"coveralls": "3.1.0",
"mocha": "8.0.1",
Expand Down

0 comments on commit 10621d0

Please sign in to comment.