@boost/args
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -6,2 +6,14 @@ # Change Log | ||
### 1.1.1 - 2020-01-25 | ||
#### ⚙️ Types | ||
- **[Arg]** Add null support to `validate`. ([35e24e4](https://github.com/milesj/boost/commit/35e24e4)) | ||
**Note:** Version bump only for package @boost/args | ||
## 1.1.0 - 2019-12-27 | ||
@@ -8,0 +20,0 @@ |
@@ -58,3 +58,3 @@ export declare type Argv = string[]; | ||
type: InferArgType<T>; | ||
validate?: (value: T) => void; | ||
validate?: ((value: T) => void) | null; | ||
} | ||
@@ -61,0 +61,0 @@ export interface Option<T extends ValueType> extends Arg<T> { |
{ | ||
"name": "@boost/args", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A type-safe and convention based argument parsing library, with strict validation checks.", | ||
@@ -28,3 +28,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "2121f3e6c0b9a9db0559abd65a889253a74f3c03" | ||
"gitHead": "06877f461f77bd007a1d2e800d25a9f27b275e65" | ||
} |
Sorry, the diff of this file is not supported yet
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
59017