Comparing version 0.3.0 to 0.3.1
@@ -21,6 +21,7 @@ #!/usr/bin/env node | ||
try { | ||
const options = program.opts(); | ||
const { protocol, host, port, path } = extractTarget(target); | ||
const timeout = program.timeout || 0; | ||
const output = program.output; | ||
const waitForDns = program.waitForDns; | ||
const timeout = options.timeout || 0; | ||
const output = options.output; | ||
const waitForDns = options.waitForDns; | ||
@@ -27,0 +28,0 @@ debug(`Timeout: ${timeout}`); |
@@ -5,2 +5,9 @@ # Changelog | ||
## [0.3.1](https://github.com/dwmkerr/wait-port/compare/v0.3.0...v0.3.1) (2022-09-05) | ||
### Miscellaneous Chores | ||
* release 0.3.1 ([d333e8f](https://github.com/dwmkerr/wait-port/commit/d333e8fc99219042406bee2467d6abd32cd1c9ef)) | ||
## [0.3.0](https://github.com/dwmkerr/wait-port/compare/v0.2.14...v0.3.0) (2022-07-11) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "wait-port", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Utility to wait for a TCP port to open.", | ||
@@ -5,0 +5,0 @@ "main": "./lib/wait-port.js", |
42865
711