@dzhechkov/harness-cli 0.5.0 → 0.5.1
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/.dz-manifest.json +48 -20
- package/README.md +243 -25
- package/dist/cli.d.ts +98 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +1574 -38
- package/dist/cli.js.map +1 -1
- package/dist/core-compat.d.ts +1 -1
- package/dist/core-compat.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/sbom.json +89 -19
- package/src/cli.ts +1682 -39
- package/src/core-compat.ts +1 -1
- package/src/index.ts +4 -0
package/src/core-compat.ts
CHANGED
|
@@ -44,7 +44,7 @@ import { fileURLToPath } from 'node:url';
|
|
|
44
44
|
* standing test (`test/core-import-floor.test.ts`, F1) fails if the two drift apart,
|
|
45
45
|
* because a guard that says 0.4.7 while npm may install 0.4.2 is worse than no guard.
|
|
46
46
|
*/
|
|
47
|
-
export const MIN_CORE = '0.5.
|
|
47
|
+
export const MIN_CORE = '0.5.1';
|
|
48
48
|
|
|
49
49
|
/** The npm name of the guarded package — one literal, used by every leg below. */
|
|
50
50
|
export const CORE_PACKAGE_NAME = '@dzhechkov/harness-core';
|
package/src/index.ts
CHANGED
|
@@ -12,3 +12,7 @@ export const HARNESS_CLI_VERSION: string =
|
|
|
12
12
|
|
|
13
13
|
export { runCli } from './cli.js';
|
|
14
14
|
export type { CliIo, ReleaseExecRunner } from './cli.js';
|
|
15
|
+
// The Codex hook DELIVERY seam (crossrt-2 fix round, findings 1+2): the argv→operation mapping and
|
|
16
|
+
// the one place a success word may be printed, exported so both can be pinned without a live codex.
|
|
17
|
+
export { codexHooksSummary, codexHooksSyncOptions, deliverCodexHooks } from './cli.js';
|
|
18
|
+
export type { CodexHooksSummary, CodexHooksSyncInput } from './cli.js';
|