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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/protocol.ts +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pokit",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Global CLI launcher for pok - install once, run anywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",
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
- /** NPM scripts configuration */
28
- npmScripts?: boolean | string[];
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
  /**