|
10 | 10 |
|
11 | 11 | > **runProgram**\<`CustomCliArguments`\>(`commandModulesPath`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
12 | 12 |
|
13 | | -Defined in: [src/index.ts:671](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L671) |
| 13 | +Defined in: [src/index.ts:671](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L671) |
14 | 14 |
|
15 | 15 | Invokes the dynamically imported |
16 | 16 | `configureProgram(commandModulesPath).execute()` function. |
@@ -48,7 +48,7 @@ if any other exception occurs, or `Arguments` otherwise. |
48 | 48 |
|
49 | 49 | > **runProgram**\<`CustomCliArguments`\>(`commandModulesPath`, `configurationHooks`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
50 | 50 |
|
51 | | -Defined in: [src/index.ts:691](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L691) |
| 51 | +Defined in: [src/index.ts:691](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L691) |
52 | 52 |
|
53 | 53 | Invokes the dynamically imported `configureProgram(commandModulesPath, |
54 | 54 | configurationHooks).execute()` function. |
@@ -90,7 +90,7 @@ if any other exception occurs, or `Arguments` otherwise. |
90 | 90 |
|
91 | 91 | > **runProgram**\<`CustomCliArguments`\>(`commandModulesPath`, `preExecutionContext`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
92 | 92 |
|
93 | | -Defined in: [src/index.ts:715](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L715) |
| 93 | +Defined in: [src/index.ts:715](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L715) |
94 | 94 |
|
95 | 95 | Invokes the `preExecutionContext.execute()` function. |
96 | 96 |
|
@@ -133,7 +133,7 @@ if any other exception occurs, or `Arguments` otherwise. |
133 | 133 |
|
134 | 134 | > **runProgram**\<`CustomCliArguments`\>(`commandModulesPath`, `argv`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
135 | 135 |
|
136 | | -Defined in: [src/index.ts:739](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L739) |
| 136 | +Defined in: [src/index.ts:739](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L739) |
137 | 137 |
|
138 | 138 | Invokes the dynamically imported |
139 | 139 | `configureProgram(commandModulesPath).execute(argv)` function. If `argv` is a |
@@ -176,7 +176,7 @@ if any other exception occurs, or `Arguments` otherwise. |
176 | 176 |
|
177 | 177 | > **runProgram**\<`CustomCliArguments`\>(`commandModulesPath`, `argv`, `configurationHooks`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
178 | 178 |
|
179 | | -Defined in: [src/index.ts:763](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L763) |
| 179 | +Defined in: [src/index.ts:763](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L763) |
180 | 180 |
|
181 | 181 | Invokes the dynamically imported `configureProgram(commandModulesPath, |
182 | 182 | configurationHooks).execute(argv)` function. If `argv` is a string, `argv = |
@@ -223,7 +223,7 @@ if any other exception occurs, or `Arguments` otherwise. |
223 | 223 |
|
224 | 224 | > **runProgram**\<`CustomCliArguments`\>(`commandModulesPath`, `argv`, `preExecutionContext`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
225 | 225 |
|
226 | | -Defined in: [src/index.ts:789](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L789) |
| 226 | +Defined in: [src/index.ts:789](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L789) |
227 | 227 |
|
228 | 228 | Invokes the `preExecutionContext.execute(argv)` function. If `argv` is a |
229 | 229 | string, `argv = argv.split(' ')` is applied first. |
@@ -271,7 +271,7 @@ if any other exception occurs, or `Arguments` otherwise. |
271 | 271 |
|
272 | 272 | > **runProgram**\<`CustomCliArguments`\>(...`args`): [`RunProgramReturnType`](../type-aliases/RunProgramReturnType.md)\<`CustomCliArguments`\> |
273 | 273 |
|
274 | | -Defined in: [src/index.ts:809](https://github.com/Xunnamius/black-flag/blob/80aa4a39c172096a78cb27464b3ff055c511121d/src/index.ts#L809) |
| 274 | +Defined in: [src/index.ts:809](https://github.com/Xunnamius/black-flag/blob/dc1ac03433006d4ed2c815a3d9a74c2b066f2dcf/src/index.ts#L809) |
275 | 275 |
|
276 | 276 | Run the given program with the configuration given in `args`. |
277 | 277 |
|
|
0 commit comments