@karmaniverous/stan-cli 0.10.1 → 0.10.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.
- package/dist/cjs/index.js +1 -1
- package/dist/cli/stan.js +102 -15
- package/dist/mjs/index.js +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -69,9 +69,10 @@ type RunBehavior = {
|
|
|
69
69
|
* @param selection - Explicit list of script keys (or `null` to run all).
|
|
70
70
|
* @param mode - Execution mode (`concurrent` by default).
|
|
71
71
|
* @param behaviorMaybe - Archive/combine/keep flags.
|
|
72
|
+
* @param promptChoice - System prompt choice (auto|local|core|<path>) to honor during the run.
|
|
72
73
|
* @returns Absolute paths to created artifacts (script outputs and/or archives).
|
|
73
74
|
*/
|
|
74
|
-
declare const runSelected: (cwd: string, config: RunnerConfig, selection?: string[] | null, mode?: ExecutionMode, behaviorMaybe?: RunBehavior) => Promise<string[]>;
|
|
75
|
+
declare const runSelected: (cwd: string, config: RunnerConfig, selection?: string[] | null, mode?: ExecutionMode, behaviorMaybe?: RunBehavior, promptChoice?: string) => Promise<string[]>;
|
|
75
76
|
|
|
76
77
|
export { renderAvailableScriptsHelp, runSelected };
|
|
77
78
|
export type { ExecutionMode, RunBehavior, RunnerConfig, ScriptEntry, ScriptMap, Selection };
|
package/package.json
CHANGED