Comparing version 3.7.3 to 3.7.4
# CHANGELOG | ||
## v3.7.4 - 2023-04-20 | ||
### Changes | ||
* :white_check_mark: minor improvements to tests | ||
### Fixes | ||
* :bug: fix for options not being passed properly in the CLI tool | ||
## v3.7.3 - 2023-04-11 | ||
@@ -4,0 +12,0 @@ ### Changes |
{ | ||
"name": "mindee", | ||
"version": "3.7.3", | ||
"version": "3.7.4", | ||
"description": "Mindee Client Library for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -297,3 +297,5 @@ "use strict"; | ||
const allOptions = { | ||
...program.opts(), | ||
...prog.parent?.parent?.opts(), | ||
...prog.parent?.opts(), | ||
...prog.opts(), | ||
...options, | ||
@@ -307,3 +309,5 @@ }; | ||
const allOptions = { | ||
...program.opts(), | ||
...prog.parent?.parent?.opts(), | ||
...prog.parent?.opts(), | ||
...prog.opts(), | ||
...options, | ||
@@ -310,0 +314,0 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
248782
5954