@oclif/core 2.1.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -92,7 +92,7 @@ export interface Config {
|
|
|
92
92
|
readonly topics: Topic[];
|
|
93
93
|
readonly commandIDs: string[];
|
|
94
94
|
runCommand<T = unknown>(id: string, argv?: string[], cachedCommand?: Command.Loadable): Promise<T>;
|
|
95
|
-
runHook<T extends keyof Hooks>(event: T, opts: Hooks[T]['options'], timeout?: number): Promise<Hook.Result<Hooks[T]['return']>>;
|
|
95
|
+
runHook<T extends keyof Hooks>(event: T, opts: Hooks[T]['options'], timeout?: number, captureErrors?: boolean): Promise<Hook.Result<Hooks[T]['return']>>;
|
|
96
96
|
getAllCommandIDs(): string[];
|
|
97
97
|
getAllCommands(): Command.Loadable[];
|
|
98
98
|
findCommand(id: string, opts: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/core",
|
|
3
3
|
"description": "base library for oclif CLIs",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.2",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/core/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"cardinal": "^2.1.1",
|
|
12
12
|
"chalk": "^4.1.2",
|
|
13
13
|
"clean-stack": "^3.0.1",
|
|
14
|
-
"cli-progress": "^3.
|
|
14
|
+
"cli-progress": "^3.11.2",
|
|
15
15
|
"debug": "^4.3.4",
|
|
16
16
|
"ejs": "^3.1.6",
|
|
17
17
|
"fs-extra": "^9.1.0",
|