From 10621d07d5616fed343dd4a45b9132bfe5096aa8 Mon Sep 17 00:00:00 2001 From: Vitaly Tomilov Date: Fri, 24 Jul 2020 13:29:16 +0100 Subject: [PATCH] docs + deps --- README.md | 2 +- package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3c64fea..2a3843e 100644 --- a/README.md +++ b/README.md @@ -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']}` diff --git a/package.json b/package.json index 48ab8e2..844d186 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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",