@dzhechkov/harness-cli 0.8.24 → 0.8.26
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 +12 -12
- package/README.md +323 -27
- package/dist/cli.d.ts +44 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +910 -193
- package/dist/cli.js.map +1 -1
- package/dist/known-flags.d.ts.map +1 -1
- package/dist/known-flags.js +7 -0
- package/dist/known-flags.js.map +1 -1
- package/package.json +2 -2
- package/sbom.json +11 -11
- package/src/cli.ts +893 -145
- package/src/known-flags.ts +7 -0
package/src/known-flags.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* See harness-core/src/cli-flag-notice.ts for the full reasoning and the honest limit.
|
|
11
11
|
*/
|
|
12
12
|
export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
13
|
+
'added-since',
|
|
13
14
|
'affected',
|
|
14
15
|
'all',
|
|
15
16
|
'allow-cold-start',
|
|
@@ -162,6 +163,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
162
163
|
'max',
|
|
163
164
|
'max-per-day',
|
|
164
165
|
'max-wall-clock',
|
|
166
|
+
'max-workers',
|
|
165
167
|
'memory',
|
|
166
168
|
'mock',
|
|
167
169
|
'mode',
|
|
@@ -239,6 +241,10 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
239
241
|
'pubkey',
|
|
240
242
|
'publish',
|
|
241
243
|
'quarter',
|
|
244
|
+
// Not a dz flag: `git rev-parse --verify --quiet` is a git argument this CLI passes through
|
|
245
|
+
// (mutation-gate --added-since ref validation) — same pass-through class as the git-diff volume
|
|
246
|
+
// counters noted above.
|
|
247
|
+
'quiet',
|
|
242
248
|
'reason',
|
|
243
249
|
'rebaseline',
|
|
244
250
|
'recalled',
|
|
@@ -324,6 +330,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
324
330
|
'topic',
|
|
325
331
|
'topics',
|
|
326
332
|
'tokens',
|
|
333
|
+
'touched',
|
|
327
334
|
'transcript',
|
|
328
335
|
'type',
|
|
329
336
|
'untracked-files', // git status argument
|