pokit 0.0.12 → 0.0.13
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/package.json +1 -1
- package/src/protocol.ts +7 -2
package/package.json
CHANGED
package/src/protocol.ts
CHANGED
|
@@ -24,8 +24,13 @@ export interface LauncherSkeleton {
|
|
|
24
24
|
prompter: any;
|
|
25
25
|
/** Optional tabs adapter instance */
|
|
26
26
|
tabs?: any;
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
/**
|
|
28
|
+
* NPM scripts to include as commands.
|
|
29
|
+
* - true: Include all scripts from root package.json
|
|
30
|
+
* - string[]: List of script names, glob patterns (e.g. 'test:*'),
|
|
31
|
+
* or package discovery paths (e.g. 'packages/*')
|
|
32
|
+
*/
|
|
33
|
+
npmScripts?: boolean | string[];
|
|
29
34
|
}
|
|
30
35
|
|
|
31
36
|
/**
|