@forbocai/test-game 0.6.0
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/README.md +49 -0
- package/dist/chunk-27XG6FHM.mjs +751 -0
- package/dist/chunk-4XIOL463.mjs +745 -0
- package/dist/chunk-NNRCMKGA.mjs +694 -0
- package/dist/cli.d.mts +17 -0
- package/dist/cli.d.ts +17 -0
- package/dist/cli.js +823 -0
- package/dist/cli.mjs +56 -0
- package/dist/index.d.mts +54 -0
- package/dist/index.d.ts +54 -0
- package/dist/index.js +774 -0
- package/dist/index.mjs +8 -0
- package/package.json +36 -0
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Runs the CLI entry flow and exits with status code:
|
|
4
|
+
* - `0` when coverage is complete
|
|
5
|
+
* - `2` when required command groups are missing
|
|
6
|
+
* User Story: As a CI user, I want exit codes to reflect coverage completeness so failures are actionable.
|
|
7
|
+
*/
|
|
8
|
+
declare const runCli: () => Promise<void>;
|
|
9
|
+
/**
|
|
10
|
+
* Test-only exports for direct unit coverage of internal CLI helpers.
|
|
11
|
+
*/
|
|
12
|
+
declare const __test: {
|
|
13
|
+
usage: () => void;
|
|
14
|
+
getArgValue: (name: string) => string | undefined;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export { __test, runCli };
|