pokit 0.0.13 → 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 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
- npmScripts: config.npmScripts,
126
+ pmScripts: config.pmScripts,
127
+ pmCommands: config.pmCommands,
127
128
  });
128
129
  }
129
130
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pokit",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
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,13 +24,19 @@ export interface LauncherSkeleton {
24
24
  prompter: any;
25
25
  /** Optional tabs adapter instance */
26
26
  tabs?: any;
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[];
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[];
34
40
  }
35
41
 
36
42
  /**