@lumpcode/cli-types 0.3.0 → 0.4.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -125,6 +125,11 @@ type LumpJsConfig<V extends LumpVariables = LumpVariables, SV extends StepVariab
125
125
  maximumNumberOfConcurrentBranches?: number;
126
126
  prompt?: LumpJsConfigSoloStep<V, SV>;
127
127
  steps?: LumpJsConfigSteps<V, SV> | LumpJsConfigStepsItem<V, SV>;
128
+ /**
129
+ * Extra command tags to pre-load before composed setup/teardown.
130
+ * A tag top-level `command` is pre-registered automatically; list other
131
+ * tags that appear only in dynamic/recursive returns.
132
+ */
128
133
  registerCommands?: string[];
129
134
  keepHistory?: boolean;
130
135
  verbose?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumpcode/cli-types",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Types and defineX helpers for Lumpcode CLI lump config and command modules",
5
5
  "keywords": [
6
6
  "lumpcode",
@@ -37,7 +37,7 @@
37
37
  "build": "rollup -c"
38
38
  },
39
39
  "dependencies": {
40
- "@lumpcode/core": "^0.3.0"
40
+ "@lumpcode/core": "^0.4.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@rollup/plugin-commonjs": "^28.0.1",