@kb-labs/shared-cli-ui 1.4.0 → 2.6.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.
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -807,6 +807,7 @@ var StaticCommandDiscovery = class {
|
|
|
807
807
|
constructor(commands) {
|
|
808
808
|
this.commands = commands;
|
|
809
809
|
}
|
|
810
|
+
commands;
|
|
810
811
|
async getAvailableCommands() {
|
|
811
812
|
return [...this.commands];
|
|
812
813
|
}
|
|
@@ -1003,6 +1004,8 @@ var DynamicCommandDiscovery = class {
|
|
|
1003
1004
|
this.manifestLoader = manifestLoader;
|
|
1004
1005
|
this.packageNames = packageNames;
|
|
1005
1006
|
}
|
|
1007
|
+
manifestLoader;
|
|
1008
|
+
packageNames;
|
|
1006
1009
|
manifestCache = /* @__PURE__ */ new Map();
|
|
1007
1010
|
commandCache = /* @__PURE__ */ new Map();
|
|
1008
1011
|
async getAvailableCommands() {
|