@harness-engineering/cli 2.4.1 → 2.4.2
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 +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -788,14 +788,14 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
788
788
|
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>]>>>>;
|
|
789
789
|
}, "strip", z.ZodTypeAny, {
|
|
790
790
|
enabled: boolean;
|
|
791
|
-
thresholds: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
792
|
-
modules: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
793
791
|
baselinePath: string;
|
|
792
|
+
thresholds: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
793
|
+
modules: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
794
794
|
}, {
|
|
795
795
|
enabled?: boolean | undefined;
|
|
796
|
-
thresholds?: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
797
|
-
modules?: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
798
796
|
baselinePath?: string | undefined;
|
|
797
|
+
thresholds?: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
798
|
+
modules?: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
799
799
|
}>>;
|
|
800
800
|
/** Skill loading, suggestion, and tier override settings */
|
|
801
801
|
skills: z.ZodOptional<z.ZodObject<{
|
|
@@ -1162,9 +1162,9 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
1162
1162
|
} | undefined;
|
|
1163
1163
|
architecture?: {
|
|
1164
1164
|
enabled: boolean;
|
|
1165
|
-
thresholds: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
1166
|
-
modules: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
1167
1165
|
baselinePath: string;
|
|
1166
|
+
thresholds: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>;
|
|
1167
|
+
modules: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>>;
|
|
1168
1168
|
} | undefined;
|
|
1169
1169
|
traceability?: {
|
|
1170
1170
|
enabled: boolean;
|
|
@@ -1339,9 +1339,9 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
1339
1339
|
} | undefined;
|
|
1340
1340
|
architecture?: {
|
|
1341
1341
|
enabled?: boolean | undefined;
|
|
1342
|
-
thresholds?: Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
1343
|
-
modules?: Record<string, Partial<Record<"complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
1344
1342
|
baselinePath?: string | undefined;
|
|
1343
|
+
thresholds?: Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>> | undefined;
|
|
1344
|
+
modules?: Record<string, Partial<Record<"circular-deps" | "layer-violations" | "complexity" | "coupling" | "forbidden-imports" | "module-size" | "dependency-depth", number | Record<string, number>>>> | undefined;
|
|
1345
1345
|
} | undefined;
|
|
1346
1346
|
traceability?: {
|
|
1347
1347
|
enabled?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harness-engineering/cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"description": "CLI for Harness Engineering toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"web-tree-sitter": "^0.24.7",
|
|
39
39
|
"yaml": "^2.8.3",
|
|
40
40
|
"zod": "^3.25.76",
|
|
41
|
-
"@harness-engineering/core": "0.26.
|
|
42
|
-
"@harness-engineering/dashboard": "0.6.3",
|
|
41
|
+
"@harness-engineering/core": "0.26.2",
|
|
43
42
|
"@harness-engineering/graph": "0.9.0",
|
|
44
43
|
"@harness-engineering/linter-gen": "0.1.7",
|
|
45
|
-
"@harness-engineering/
|
|
46
|
-
"@harness-engineering/
|
|
44
|
+
"@harness-engineering/dashboard": "0.6.4",
|
|
45
|
+
"@harness-engineering/orchestrator": "0.4.4",
|
|
46
|
+
"@harness-engineering/types": "0.12.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@harness-engineering/intelligence": "0.2.
|
|
49
|
+
"@harness-engineering/intelligence": "0.2.3"
|
|
50
50
|
},
|
|
51
51
|
"peerDependenciesMeta": {
|
|
52
52
|
"@harness-engineering/intelligence": {
|