@lumpcode/cli-utils 0.3.0 → 0.3.1
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/index.d.ts +5 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -114,6 +114,11 @@ type LumpJsConfig<V extends LumpVariables = LumpVariables, SV extends StepVariab
|
|
|
114
114
|
maximumNumberOfConcurrentBranches?: number;
|
|
115
115
|
prompt?: LumpJsConfigSoloStep<V, SV>;
|
|
116
116
|
steps?: LumpJsConfigSteps<V, SV> | LumpJsConfigStepsItem<V, SV>;
|
|
117
|
+
/**
|
|
118
|
+
* Extra command tags to pre-load before composed setup/teardown.
|
|
119
|
+
* A tag top-level `command` is pre-registered automatically; list other
|
|
120
|
+
* tags that appear only in dynamic/recursive returns.
|
|
121
|
+
*/
|
|
117
122
|
registerCommands?: string[];
|
|
118
123
|
keepHistory?: boolean;
|
|
119
124
|
verbose?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumpcode/cli-utils",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Types, defineX helpers, and runtime utilities for Lumpcode lump configs and recipes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumpcode",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"test": "vitest run"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@lumpcode/cli-types": "^0.3.
|
|
47
|
-
"@lumpcode/core": "^0.3.
|
|
46
|
+
"@lumpcode/cli-types": "^0.3.1",
|
|
47
|
+
"@lumpcode/core": "^0.3.1",
|
|
48
48
|
"js-yaml": "^5.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|