Comparing version 2.3.1 to 2.3.2
import { Command } from "./types"; | ||
export declare const findCommand: (commands: string[]) => [command: Command, args: string[]]; | ||
type FoundCommand = { | ||
command: Command; | ||
args: string[]; | ||
error?: undefined; | ||
} | { | ||
command?: Command; | ||
error: string; | ||
args?: undefined; | ||
}; | ||
export declare const findCommand: (commands: string[]) => FoundCommand; | ||
export declare const parse: (argv?: string[]) => Promise<unknown>; | ||
export {}; |
{ | ||
"name": "brocolito", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"description": "Create type-safe CLIs to align local development and pipeline workflows", | ||
@@ -5,0 +5,0 @@ "main": "dist/brocolito.cjs", |
Sorry, the diff of this file is not supported yet
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
44729
1220