pokit 0.0.12 → 0.0.14
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/bin/pok.ts +2 -1
- package/package.json +1 -1
- package/src/protocol.ts +13 -2
package/bin/pok.ts
CHANGED
|
@@ -123,7 +123,8 @@ Run \`pok init\` to create a pok.config.ts file.
|
|
|
123
123
|
reporterAdapter: config.reporter,
|
|
124
124
|
prompter: config.prompter,
|
|
125
125
|
tabs: config.tabs,
|
|
126
|
-
|
|
126
|
+
pmScripts: config.pmScripts,
|
|
127
|
+
pmCommands: config.pmCommands,
|
|
127
128
|
});
|
|
128
129
|
}
|
|
129
130
|
|
package/package.json
CHANGED
package/src/protocol.ts
CHANGED
|
@@ -24,8 +24,19 @@ export interface LauncherSkeleton {
|
|
|
24
24
|
prompter: any;
|
|
25
25
|
/** Optional tabs adapter instance */
|
|
26
26
|
tabs?: any;
|
|
27
|
-
/**
|
|
28
|
-
|
|
27
|
+
/**
|
|
28
|
+
* Package manager 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
|
+
pmScripts?: boolean | string[];
|
|
34
|
+
/**
|
|
35
|
+
* Native package manager commands to include (e.g. 'install', 'add', 'run').
|
|
36
|
+
* - true: Include standard lifecycle commands
|
|
37
|
+
* - string[]: List of specific commands to include
|
|
38
|
+
*/
|
|
39
|
+
pmCommands?: boolean | string[];
|
|
29
40
|
}
|
|
30
41
|
|
|
31
42
|
/**
|