@harness-engineering/cli 3.0.0 → 3.0.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/dist/index.d.ts +8 -8
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -1576,14 +1576,14 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
1576
1576
|
modules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["circular-deps", "layer-violations", "complexity", "coupling", "forbidden-imports", "module-size", "dependency-depth"]>, z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>>>;
|
|
1577
1577
|
}, "strip", z.ZodTypeAny, {
|
|
1578
1578
|
enabled: boolean;
|
|
1579
|
-
thresholds: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
1580
|
-
modules: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
1581
1579
|
baselinePath: string;
|
|
1580
|
+
thresholds: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
1581
|
+
modules: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
1582
1582
|
}, {
|
|
1583
1583
|
enabled?: boolean | undefined;
|
|
1584
|
-
thresholds?: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
1585
|
-
modules?: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
1586
1584
|
baselinePath?: string | undefined;
|
|
1585
|
+
thresholds?: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
1586
|
+
modules?: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
1587
1587
|
}>>;
|
|
1588
1588
|
/** Skill loading, suggestion, and tier override settings */
|
|
1589
1589
|
skills: z.ZodOptional<z.ZodObject<{
|
|
@@ -2235,9 +2235,9 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
2235
2235
|
} | undefined;
|
|
2236
2236
|
architecture?: {
|
|
2237
2237
|
enabled: boolean;
|
|
2238
|
-
thresholds: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
2239
|
-
modules: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
2240
2238
|
baselinePath: string;
|
|
2239
|
+
thresholds: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
2240
|
+
modules: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
2241
2241
|
} | undefined;
|
|
2242
2242
|
traceability?: {
|
|
2243
2243
|
enabled: boolean;
|
|
@@ -2553,9 +2553,9 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
2553
2553
|
} | undefined;
|
|
2554
2554
|
architecture?: {
|
|
2555
2555
|
enabled?: boolean | undefined;
|
|
2556
|
-
thresholds?: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
2557
|
-
modules?: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
2558
2556
|
baselinePath?: string | undefined;
|
|
2557
|
+
thresholds?: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
2558
|
+
modules?: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
2559
2559
|
} | undefined;
|
|
2560
2560
|
traceability?: {
|
|
2561
2561
|
enabled?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harness-engineering/cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "CLI for Harness Engineering toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"web-tree-sitter": "^0.24.7",
|
|
40
40
|
"yaml": "^2.8.3",
|
|
41
41
|
"zod": "^3.25.76",
|
|
42
|
-
"@harness-engineering/
|
|
43
|
-
"@harness-engineering/
|
|
44
|
-
"@harness-engineering/
|
|
45
|
-
"@harness-engineering/
|
|
46
|
-
"@harness-engineering/
|
|
47
|
-
"@harness-engineering/
|
|
42
|
+
"@harness-engineering/core": "0.30.1",
|
|
43
|
+
"@harness-engineering/dashboard": "0.10.0",
|
|
44
|
+
"@harness-engineering/graph": "0.11.1",
|
|
45
|
+
"@harness-engineering/linter-gen": "0.1.7",
|
|
46
|
+
"@harness-engineering/orchestrator": "0.8.3",
|
|
47
|
+
"@harness-engineering/types": "0.16.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@harness-engineering/intelligence": "0.3.
|
|
50
|
+
"@harness-engineering/intelligence": "0.3.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependenciesMeta": {
|
|
53
53
|
"@harness-engineering/intelligence": {
|