commandkit 1.0.0-dev.20250512141520 → 1.0.0-dev.20250512143211
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 +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1767,8 +1767,9 @@ declare class CommandKit extends EventEmitter {
|
|
|
1767
1767
|
interface CommandKitConfig {
|
|
1768
1768
|
/**
|
|
1769
1769
|
* The plugins to use with CommandKit.
|
|
1770
|
+
* Can be a single plugin, an array of plugins, or a nested array of plugins.
|
|
1770
1771
|
*/
|
|
1771
|
-
plugins?: CommandKitPlugin[] | Array<CommandKitPlugin
|
|
1772
|
+
plugins?: MaybeArray<CommandKitPlugin>[] | Array<CommandKitPlugin>;
|
|
1772
1773
|
/**
|
|
1773
1774
|
* The esbuild plugins to use with CommandKit.
|
|
1774
1775
|
*/
|