@vibe-validate/config 0.19.0 → 0.19.1-rc.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/config.schema.json +44 -0
- package/dist/schema.d.ts +142 -6
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +17 -0
- package/dist/schema.js.map +1 -1
- package/package.json +2 -2
package/config.schema.json
CHANGED
|
@@ -51,6 +51,13 @@
|
|
|
51
51
|
},
|
|
52
52
|
"cwd": {
|
|
53
53
|
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"runScope": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"enum": [
|
|
58
|
+
"ci",
|
|
59
|
+
"local"
|
|
60
|
+
]
|
|
54
61
|
}
|
|
55
62
|
},
|
|
56
63
|
"required": [
|
|
@@ -176,6 +183,43 @@
|
|
|
176
183
|
}
|
|
177
184
|
},
|
|
178
185
|
"additionalProperties": false
|
|
186
|
+
},
|
|
187
|
+
"registryUrl": {
|
|
188
|
+
"type": "string"
|
|
189
|
+
},
|
|
190
|
+
"env": {
|
|
191
|
+
"type": "object",
|
|
192
|
+
"additionalProperties": {
|
|
193
|
+
"type": "string"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"permissions": {
|
|
197
|
+
"type": "object",
|
|
198
|
+
"additionalProperties": {
|
|
199
|
+
"type": "string"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"concurrency": {
|
|
203
|
+
"type": "object",
|
|
204
|
+
"properties": {
|
|
205
|
+
"group": {
|
|
206
|
+
"type": "string"
|
|
207
|
+
},
|
|
208
|
+
"cancelInProgress": {
|
|
209
|
+
"type": "boolean"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"required": [
|
|
213
|
+
"group"
|
|
214
|
+
],
|
|
215
|
+
"additionalProperties": false
|
|
216
|
+
},
|
|
217
|
+
"setupSteps": {
|
|
218
|
+
"type": "array",
|
|
219
|
+
"items": {
|
|
220
|
+
"type": "object",
|
|
221
|
+
"additionalProperties": {}
|
|
222
|
+
}
|
|
179
223
|
}
|
|
180
224
|
},
|
|
181
225
|
"additionalProperties": false
|
package/dist/schema.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export declare const ValidationStepSchema: z.ZodObject<{
|
|
|
25
25
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
26
26
|
/** Optional: Working directory for this step, relative to git root (default: git root) */
|
|
27
27
|
cwd: z.ZodOptional<z.ZodString>;
|
|
28
|
+
/** Optional: Restrict step to run only in CI or only locally */
|
|
29
|
+
runScope: z.ZodOptional<z.ZodEnum<["ci", "local"]>>;
|
|
28
30
|
}, "strict", z.ZodTypeAny, {
|
|
29
31
|
name: string;
|
|
30
32
|
command: string;
|
|
@@ -33,6 +35,7 @@ export declare const ValidationStepSchema: z.ZodObject<{
|
|
|
33
35
|
continueOnError?: boolean | undefined;
|
|
34
36
|
env?: Record<string, string> | undefined;
|
|
35
37
|
cwd?: string | undefined;
|
|
38
|
+
runScope?: "ci" | "local" | undefined;
|
|
36
39
|
}, {
|
|
37
40
|
name: string;
|
|
38
41
|
command: string;
|
|
@@ -41,6 +44,7 @@ export declare const ValidationStepSchema: z.ZodObject<{
|
|
|
41
44
|
continueOnError?: boolean | undefined;
|
|
42
45
|
env?: Record<string, string> | undefined;
|
|
43
46
|
cwd?: string | undefined;
|
|
47
|
+
runScope?: "ci" | "local" | undefined;
|
|
44
48
|
}>;
|
|
45
49
|
export type ValidationStep = z.infer<typeof ValidationStepSchema>;
|
|
46
50
|
/**
|
|
@@ -70,6 +74,8 @@ export declare const ValidationPhaseSchema: z.ZodObject<{
|
|
|
70
74
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
71
75
|
/** Optional: Working directory for this step, relative to git root (default: git root) */
|
|
72
76
|
cwd: z.ZodOptional<z.ZodString>;
|
|
77
|
+
/** Optional: Restrict step to run only in CI or only locally */
|
|
78
|
+
runScope: z.ZodOptional<z.ZodEnum<["ci", "local"]>>;
|
|
73
79
|
}, "strict", z.ZodTypeAny, {
|
|
74
80
|
name: string;
|
|
75
81
|
command: string;
|
|
@@ -78,6 +84,7 @@ export declare const ValidationPhaseSchema: z.ZodObject<{
|
|
|
78
84
|
continueOnError?: boolean | undefined;
|
|
79
85
|
env?: Record<string, string> | undefined;
|
|
80
86
|
cwd?: string | undefined;
|
|
87
|
+
runScope?: "ci" | "local" | undefined;
|
|
81
88
|
}, {
|
|
82
89
|
name: string;
|
|
83
90
|
command: string;
|
|
@@ -86,6 +93,7 @@ export declare const ValidationPhaseSchema: z.ZodObject<{
|
|
|
86
93
|
continueOnError?: boolean | undefined;
|
|
87
94
|
env?: Record<string, string> | undefined;
|
|
88
95
|
cwd?: string | undefined;
|
|
96
|
+
runScope?: "ci" | "local" | undefined;
|
|
89
97
|
}>, "many">;
|
|
90
98
|
/** Optional: Default timeout for all steps (milliseconds, default: 300000 = 5min) */
|
|
91
99
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -103,6 +111,7 @@ export declare const ValidationPhaseSchema: z.ZodObject<{
|
|
|
103
111
|
continueOnError?: boolean | undefined;
|
|
104
112
|
env?: Record<string, string> | undefined;
|
|
105
113
|
cwd?: string | undefined;
|
|
114
|
+
runScope?: "ci" | "local" | undefined;
|
|
106
115
|
}[];
|
|
107
116
|
failFast: boolean;
|
|
108
117
|
}, {
|
|
@@ -115,6 +124,7 @@ export declare const ValidationPhaseSchema: z.ZodObject<{
|
|
|
115
124
|
continueOnError?: boolean | undefined;
|
|
116
125
|
env?: Record<string, string> | undefined;
|
|
117
126
|
cwd?: string | undefined;
|
|
127
|
+
runScope?: "ci" | "local" | undefined;
|
|
118
128
|
}[];
|
|
119
129
|
timeout?: number | undefined;
|
|
120
130
|
parallel?: boolean | undefined;
|
|
@@ -147,6 +157,8 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
147
157
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
148
158
|
/** Optional: Working directory for this step, relative to git root (default: git root) */
|
|
149
159
|
cwd: z.ZodOptional<z.ZodString>;
|
|
160
|
+
/** Optional: Restrict step to run only in CI or only locally */
|
|
161
|
+
runScope: z.ZodOptional<z.ZodEnum<["ci", "local"]>>;
|
|
150
162
|
}, "strict", z.ZodTypeAny, {
|
|
151
163
|
name: string;
|
|
152
164
|
command: string;
|
|
@@ -155,6 +167,7 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
155
167
|
continueOnError?: boolean | undefined;
|
|
156
168
|
env?: Record<string, string> | undefined;
|
|
157
169
|
cwd?: string | undefined;
|
|
170
|
+
runScope?: "ci" | "local" | undefined;
|
|
158
171
|
}, {
|
|
159
172
|
name: string;
|
|
160
173
|
command: string;
|
|
@@ -163,6 +176,7 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
163
176
|
continueOnError?: boolean | undefined;
|
|
164
177
|
env?: Record<string, string> | undefined;
|
|
165
178
|
cwd?: string | undefined;
|
|
179
|
+
runScope?: "ci" | "local" | undefined;
|
|
166
180
|
}>, "many">;
|
|
167
181
|
/** Optional: Default timeout for all steps (milliseconds, default: 300000 = 5min) */
|
|
168
182
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -180,6 +194,7 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
180
194
|
continueOnError?: boolean | undefined;
|
|
181
195
|
env?: Record<string, string> | undefined;
|
|
182
196
|
cwd?: string | undefined;
|
|
197
|
+
runScope?: "ci" | "local" | undefined;
|
|
183
198
|
}[];
|
|
184
199
|
failFast: boolean;
|
|
185
200
|
}, {
|
|
@@ -192,6 +207,7 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
192
207
|
continueOnError?: boolean | undefined;
|
|
193
208
|
env?: Record<string, string> | undefined;
|
|
194
209
|
cwd?: string | undefined;
|
|
210
|
+
runScope?: "ci" | "local" | undefined;
|
|
195
211
|
}[];
|
|
196
212
|
timeout?: number | undefined;
|
|
197
213
|
parallel?: boolean | undefined;
|
|
@@ -213,6 +229,7 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
213
229
|
continueOnError?: boolean | undefined;
|
|
214
230
|
env?: Record<string, string> | undefined;
|
|
215
231
|
cwd?: string | undefined;
|
|
232
|
+
runScope?: "ci" | "local" | undefined;
|
|
216
233
|
}[];
|
|
217
234
|
failFast: boolean;
|
|
218
235
|
}[];
|
|
@@ -227,6 +244,7 @@ export declare const ValidationConfigSchema: z.ZodObject<{
|
|
|
227
244
|
continueOnError?: boolean | undefined;
|
|
228
245
|
env?: Record<string, string> | undefined;
|
|
229
246
|
cwd?: string | undefined;
|
|
247
|
+
runScope?: "ci" | "local" | undefined;
|
|
230
248
|
}[];
|
|
231
249
|
timeout?: number | undefined;
|
|
232
250
|
parallel?: boolean | undefined;
|
|
@@ -376,8 +394,30 @@ export declare const CIConfigSchema: z.ZodObject<{
|
|
|
376
394
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
377
395
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
378
396
|
}>>;
|
|
397
|
+
/** Optional: Custom npm registry URL for CI workflows */
|
|
398
|
+
registryUrl: z.ZodOptional<z.ZodString>;
|
|
399
|
+
/** Optional: Environment variables to set in CI workflows */
|
|
400
|
+
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
401
|
+
/** Optional: GitHub Actions permissions for the workflow */
|
|
402
|
+
permissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
403
|
+
/** Optional: Concurrency settings for CI workflows */
|
|
404
|
+
concurrency: z.ZodOptional<z.ZodObject<{
|
|
405
|
+
/** Concurrency group expression */
|
|
406
|
+
group: z.ZodString;
|
|
407
|
+
/** Cancel in-progress runs when a new run is triggered (default: undefined) */
|
|
408
|
+
cancelInProgress: z.ZodOptional<z.ZodBoolean>;
|
|
409
|
+
}, "strict", z.ZodTypeAny, {
|
|
410
|
+
group: string;
|
|
411
|
+
cancelInProgress?: boolean | undefined;
|
|
412
|
+
}, {
|
|
413
|
+
group: string;
|
|
414
|
+
cancelInProgress?: boolean | undefined;
|
|
415
|
+
}>>;
|
|
416
|
+
/** Optional: Additional setup steps to run before validation in CI */
|
|
417
|
+
setupSteps: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
379
418
|
}, "strict", z.ZodTypeAny, {
|
|
380
419
|
disableWorkflowCheck: boolean;
|
|
420
|
+
env?: Record<string, string> | undefined;
|
|
381
421
|
failFast?: boolean | undefined;
|
|
382
422
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
383
423
|
nodeVersions?: string[] | undefined;
|
|
@@ -388,7 +428,15 @@ export declare const CIConfigSchema: z.ZodObject<{
|
|
|
388
428
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
389
429
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
390
430
|
} | undefined;
|
|
431
|
+
registryUrl?: string | undefined;
|
|
432
|
+
permissions?: Record<string, string> | undefined;
|
|
433
|
+
concurrency?: {
|
|
434
|
+
group: string;
|
|
435
|
+
cancelInProgress?: boolean | undefined;
|
|
436
|
+
} | undefined;
|
|
437
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
391
438
|
}, {
|
|
439
|
+
env?: Record<string, string> | undefined;
|
|
392
440
|
failFast?: boolean | undefined;
|
|
393
441
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
394
442
|
nodeVersions?: string[] | undefined;
|
|
@@ -400,6 +448,13 @@ export declare const CIConfigSchema: z.ZodObject<{
|
|
|
400
448
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
401
449
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
402
450
|
} | undefined;
|
|
451
|
+
registryUrl?: string | undefined;
|
|
452
|
+
permissions?: Record<string, string> | undefined;
|
|
453
|
+
concurrency?: {
|
|
454
|
+
group: string;
|
|
455
|
+
cancelInProgress?: boolean | undefined;
|
|
456
|
+
} | undefined;
|
|
457
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
403
458
|
}>;
|
|
404
459
|
export type CIConfig = z.infer<typeof CIConfigSchema>;
|
|
405
460
|
/**
|
|
@@ -683,6 +738,8 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
683
738
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
684
739
|
/** Optional: Working directory for this step, relative to git root (default: git root) */
|
|
685
740
|
cwd: z.ZodOptional<z.ZodString>;
|
|
741
|
+
/** Optional: Restrict step to run only in CI or only locally */
|
|
742
|
+
runScope: z.ZodOptional<z.ZodEnum<["ci", "local"]>>;
|
|
686
743
|
}, "strict", z.ZodTypeAny, {
|
|
687
744
|
name: string;
|
|
688
745
|
command: string;
|
|
@@ -691,6 +748,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
691
748
|
continueOnError?: boolean | undefined;
|
|
692
749
|
env?: Record<string, string> | undefined;
|
|
693
750
|
cwd?: string | undefined;
|
|
751
|
+
runScope?: "ci" | "local" | undefined;
|
|
694
752
|
}, {
|
|
695
753
|
name: string;
|
|
696
754
|
command: string;
|
|
@@ -699,6 +757,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
699
757
|
continueOnError?: boolean | undefined;
|
|
700
758
|
env?: Record<string, string> | undefined;
|
|
701
759
|
cwd?: string | undefined;
|
|
760
|
+
runScope?: "ci" | "local" | undefined;
|
|
702
761
|
}>, "many">;
|
|
703
762
|
/** Optional: Default timeout for all steps (milliseconds, default: 300000 = 5min) */
|
|
704
763
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -716,6 +775,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
716
775
|
continueOnError?: boolean | undefined;
|
|
717
776
|
env?: Record<string, string> | undefined;
|
|
718
777
|
cwd?: string | undefined;
|
|
778
|
+
runScope?: "ci" | "local" | undefined;
|
|
719
779
|
}[];
|
|
720
780
|
failFast: boolean;
|
|
721
781
|
}, {
|
|
@@ -728,6 +788,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
728
788
|
continueOnError?: boolean | undefined;
|
|
729
789
|
env?: Record<string, string> | undefined;
|
|
730
790
|
cwd?: string | undefined;
|
|
791
|
+
runScope?: "ci" | "local" | undefined;
|
|
731
792
|
}[];
|
|
732
793
|
timeout?: number | undefined;
|
|
733
794
|
parallel?: boolean | undefined;
|
|
@@ -749,6 +810,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
749
810
|
continueOnError?: boolean | undefined;
|
|
750
811
|
env?: Record<string, string> | undefined;
|
|
751
812
|
cwd?: string | undefined;
|
|
813
|
+
runScope?: "ci" | "local" | undefined;
|
|
752
814
|
}[];
|
|
753
815
|
failFast: boolean;
|
|
754
816
|
}[];
|
|
@@ -763,6 +825,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
763
825
|
continueOnError?: boolean | undefined;
|
|
764
826
|
env?: Record<string, string> | undefined;
|
|
765
827
|
cwd?: string | undefined;
|
|
828
|
+
runScope?: "ci" | "local" | undefined;
|
|
766
829
|
}[];
|
|
767
830
|
timeout?: number | undefined;
|
|
768
831
|
parallel?: boolean | undefined;
|
|
@@ -864,8 +927,30 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
864
927
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
865
928
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
866
929
|
}>>;
|
|
930
|
+
/** Optional: Custom npm registry URL for CI workflows */
|
|
931
|
+
registryUrl: z.ZodOptional<z.ZodString>;
|
|
932
|
+
/** Optional: Environment variables to set in CI workflows */
|
|
933
|
+
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
934
|
+
/** Optional: GitHub Actions permissions for the workflow */
|
|
935
|
+
permissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
936
|
+
/** Optional: Concurrency settings for CI workflows */
|
|
937
|
+
concurrency: z.ZodOptional<z.ZodObject<{
|
|
938
|
+
/** Concurrency group expression */
|
|
939
|
+
group: z.ZodString;
|
|
940
|
+
/** Cancel in-progress runs when a new run is triggered (default: undefined) */
|
|
941
|
+
cancelInProgress: z.ZodOptional<z.ZodBoolean>;
|
|
942
|
+
}, "strict", z.ZodTypeAny, {
|
|
943
|
+
group: string;
|
|
944
|
+
cancelInProgress?: boolean | undefined;
|
|
945
|
+
}, {
|
|
946
|
+
group: string;
|
|
947
|
+
cancelInProgress?: boolean | undefined;
|
|
948
|
+
}>>;
|
|
949
|
+
/** Optional: Additional setup steps to run before validation in CI */
|
|
950
|
+
setupSteps: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
867
951
|
}, "strict", z.ZodTypeAny, {
|
|
868
952
|
disableWorkflowCheck: boolean;
|
|
953
|
+
env?: Record<string, string> | undefined;
|
|
869
954
|
failFast?: boolean | undefined;
|
|
870
955
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
871
956
|
nodeVersions?: string[] | undefined;
|
|
@@ -876,7 +961,15 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
876
961
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
877
962
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
878
963
|
} | undefined;
|
|
964
|
+
registryUrl?: string | undefined;
|
|
965
|
+
permissions?: Record<string, string> | undefined;
|
|
966
|
+
concurrency?: {
|
|
967
|
+
group: string;
|
|
968
|
+
cancelInProgress?: boolean | undefined;
|
|
969
|
+
} | undefined;
|
|
970
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
879
971
|
}, {
|
|
972
|
+
env?: Record<string, string> | undefined;
|
|
880
973
|
failFast?: boolean | undefined;
|
|
881
974
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
882
975
|
nodeVersions?: string[] | undefined;
|
|
@@ -888,6 +981,13 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
888
981
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
889
982
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
890
983
|
} | undefined;
|
|
984
|
+
registryUrl?: string | undefined;
|
|
985
|
+
permissions?: Record<string, string> | undefined;
|
|
986
|
+
concurrency?: {
|
|
987
|
+
group: string;
|
|
988
|
+
cancelInProgress?: boolean | undefined;
|
|
989
|
+
} | undefined;
|
|
990
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
891
991
|
}>>;
|
|
892
992
|
/** Hooks configuration (pre-commit, etc.) */
|
|
893
993
|
hooks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -1090,6 +1190,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
1090
1190
|
continueOnError?: boolean | undefined;
|
|
1091
1191
|
env?: Record<string, string> | undefined;
|
|
1092
1192
|
cwd?: string | undefined;
|
|
1193
|
+
runScope?: "ci" | "local" | undefined;
|
|
1093
1194
|
}[];
|
|
1094
1195
|
failFast: boolean;
|
|
1095
1196
|
}[];
|
|
@@ -1132,6 +1233,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
1132
1233
|
developerFeedback: boolean;
|
|
1133
1234
|
ci?: {
|
|
1134
1235
|
disableWorkflowCheck: boolean;
|
|
1236
|
+
env?: Record<string, string> | undefined;
|
|
1135
1237
|
failFast?: boolean | undefined;
|
|
1136
1238
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1137
1239
|
nodeVersions?: string[] | undefined;
|
|
@@ -1142,6 +1244,13 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
1142
1244
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
1143
1245
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1144
1246
|
} | undefined;
|
|
1247
|
+
registryUrl?: string | undefined;
|
|
1248
|
+
permissions?: Record<string, string> | undefined;
|
|
1249
|
+
concurrency?: {
|
|
1250
|
+
group: string;
|
|
1251
|
+
cancelInProgress?: boolean | undefined;
|
|
1252
|
+
} | undefined;
|
|
1253
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
1145
1254
|
} | undefined;
|
|
1146
1255
|
}, {
|
|
1147
1256
|
validation: {
|
|
@@ -1155,6 +1264,7 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
1155
1264
|
continueOnError?: boolean | undefined;
|
|
1156
1265
|
env?: Record<string, string> | undefined;
|
|
1157
1266
|
cwd?: string | undefined;
|
|
1267
|
+
runScope?: "ci" | "local" | undefined;
|
|
1158
1268
|
}[];
|
|
1159
1269
|
timeout?: number | undefined;
|
|
1160
1270
|
parallel?: boolean | undefined;
|
|
@@ -1162,13 +1272,8 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
1162
1272
|
}[];
|
|
1163
1273
|
failFast?: boolean | undefined;
|
|
1164
1274
|
};
|
|
1165
|
-
git?: {
|
|
1166
|
-
mainBranch?: string | undefined;
|
|
1167
|
-
remoteOrigin?: string | undefined;
|
|
1168
|
-
autoSync?: boolean | undefined;
|
|
1169
|
-
warnIfBehind?: boolean | undefined;
|
|
1170
|
-
} | undefined;
|
|
1171
1275
|
ci?: {
|
|
1276
|
+
env?: Record<string, string> | undefined;
|
|
1172
1277
|
failFast?: boolean | undefined;
|
|
1173
1278
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1174
1279
|
nodeVersions?: string[] | undefined;
|
|
@@ -1180,6 +1285,19 @@ export declare const VibeValidateConfigSchema: z.ZodObject<{
|
|
|
1180
1285
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
1181
1286
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1182
1287
|
} | undefined;
|
|
1288
|
+
registryUrl?: string | undefined;
|
|
1289
|
+
permissions?: Record<string, string> | undefined;
|
|
1290
|
+
concurrency?: {
|
|
1291
|
+
group: string;
|
|
1292
|
+
cancelInProgress?: boolean | undefined;
|
|
1293
|
+
} | undefined;
|
|
1294
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
1295
|
+
} | undefined;
|
|
1296
|
+
git?: {
|
|
1297
|
+
mainBranch?: string | undefined;
|
|
1298
|
+
remoteOrigin?: string | undefined;
|
|
1299
|
+
autoSync?: boolean | undefined;
|
|
1300
|
+
warnIfBehind?: boolean | undefined;
|
|
1183
1301
|
} | undefined;
|
|
1184
1302
|
hooks?: {
|
|
1185
1303
|
preCommit?: {
|
|
@@ -1235,6 +1353,7 @@ export declare const validateConfig: (data: unknown) => {
|
|
|
1235
1353
|
continueOnError?: boolean | undefined;
|
|
1236
1354
|
env?: Record<string, string> | undefined;
|
|
1237
1355
|
cwd?: string | undefined;
|
|
1356
|
+
runScope?: "ci" | "local" | undefined;
|
|
1238
1357
|
}[];
|
|
1239
1358
|
failFast: boolean;
|
|
1240
1359
|
}[];
|
|
@@ -1277,6 +1396,7 @@ export declare const validateConfig: (data: unknown) => {
|
|
|
1277
1396
|
developerFeedback: boolean;
|
|
1278
1397
|
ci?: {
|
|
1279
1398
|
disableWorkflowCheck: boolean;
|
|
1399
|
+
env?: Record<string, string> | undefined;
|
|
1280
1400
|
failFast?: boolean | undefined;
|
|
1281
1401
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1282
1402
|
nodeVersions?: string[] | undefined;
|
|
@@ -1287,6 +1407,13 @@ export declare const validateConfig: (data: unknown) => {
|
|
|
1287
1407
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
1288
1408
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1289
1409
|
} | undefined;
|
|
1410
|
+
registryUrl?: string | undefined;
|
|
1411
|
+
permissions?: Record<string, string> | undefined;
|
|
1412
|
+
concurrency?: {
|
|
1413
|
+
group: string;
|
|
1414
|
+
cancelInProgress?: boolean | undefined;
|
|
1415
|
+
} | undefined;
|
|
1416
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
1290
1417
|
} | undefined;
|
|
1291
1418
|
};
|
|
1292
1419
|
/**
|
|
@@ -1312,6 +1439,7 @@ export declare const safeValidateConfig: (data: unknown) => {
|
|
|
1312
1439
|
continueOnError?: boolean | undefined;
|
|
1313
1440
|
env?: Record<string, string> | undefined;
|
|
1314
1441
|
cwd?: string | undefined;
|
|
1442
|
+
runScope?: "ci" | "local" | undefined;
|
|
1315
1443
|
}[];
|
|
1316
1444
|
failFast: boolean;
|
|
1317
1445
|
}[];
|
|
@@ -1354,6 +1482,7 @@ export declare const safeValidateConfig: (data: unknown) => {
|
|
|
1354
1482
|
developerFeedback: boolean;
|
|
1355
1483
|
ci?: {
|
|
1356
1484
|
disableWorkflowCheck: boolean;
|
|
1485
|
+
env?: Record<string, string> | undefined;
|
|
1357
1486
|
failFast?: boolean | undefined;
|
|
1358
1487
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1359
1488
|
nodeVersions?: string[] | undefined;
|
|
@@ -1364,6 +1493,13 @@ export declare const safeValidateConfig: (data: unknown) => {
|
|
|
1364
1493
|
runOn?: "validate" | "pre-commit" | "disabled" | undefined;
|
|
1365
1494
|
packageManager?: "npm" | "pnpm" | "yarn" | "bun" | undefined;
|
|
1366
1495
|
} | undefined;
|
|
1496
|
+
registryUrl?: string | undefined;
|
|
1497
|
+
permissions?: Record<string, string> | undefined;
|
|
1498
|
+
concurrency?: {
|
|
1499
|
+
group: string;
|
|
1500
|
+
cancelInProgress?: boolean | undefined;
|
|
1501
|
+
} | undefined;
|
|
1502
|
+
setupSteps?: Record<string, unknown>[] | undefined;
|
|
1367
1503
|
} | undefined;
|
|
1368
1504
|
};
|
|
1369
1505
|
} | {
|
package/dist/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB;;;;GAIG;AACH,eAAO,MAAM,oBAAoB;IAC/B,kEAAkE;;IAGlE,qDAAqD;;IAGrD,uEAAuE;;IAGvE,+EAA+E;;IAG/E,qDAAqD;;IAGrD,oDAAoD;;IAGpD,0FAA0F
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
|
package/dist/schema.js
CHANGED
|
@@ -27,6 +27,8 @@ export const ValidationStepSchema = z.object({
|
|
|
27
27
|
env: z.record(z.string(), z.string()).optional(),
|
|
28
28
|
/** Optional: Working directory for this step, relative to git root (default: git root) */
|
|
29
29
|
cwd: z.string().optional(),
|
|
30
|
+
/** Optional: Restrict step to run only in CI or only locally */
|
|
31
|
+
runScope: z.enum(['ci', 'local']).optional(),
|
|
30
32
|
}).strict();
|
|
31
33
|
/**
|
|
32
34
|
* Validation Phase Schema
|
|
@@ -141,6 +143,21 @@ export const CIConfigSchema = z.object({
|
|
|
141
143
|
* before validation runs. Recommended for all Node.js projects.
|
|
142
144
|
*/
|
|
143
145
|
dependencyLockCheck: DependencyLockCheckSchema.optional(),
|
|
146
|
+
/** Optional: Custom npm registry URL for CI workflows */
|
|
147
|
+
registryUrl: z.string().optional(),
|
|
148
|
+
/** Optional: Environment variables to set in CI workflows */
|
|
149
|
+
env: z.record(z.string()).optional(),
|
|
150
|
+
/** Optional: GitHub Actions permissions for the workflow */
|
|
151
|
+
permissions: z.record(z.string()).optional(),
|
|
152
|
+
/** Optional: Concurrency settings for CI workflows */
|
|
153
|
+
concurrency: z.object({
|
|
154
|
+
/** Concurrency group expression */
|
|
155
|
+
group: z.string(),
|
|
156
|
+
/** Cancel in-progress runs when a new run is triggered (default: undefined) */
|
|
157
|
+
cancelInProgress: z.boolean().optional(),
|
|
158
|
+
}).strict().optional(),
|
|
159
|
+
/** Optional: Additional setup steps to run before validation in CI */
|
|
160
|
+
setupSteps: z.array(z.record(z.unknown())).optional(),
|
|
144
161
|
}).strict();
|
|
145
162
|
/**
|
|
146
163
|
* Secret Scanning Configuration Schema
|
package/dist/schema.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAE/E;;;;GAIG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,kEAAkE;IAClE,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,2BAA2B,CAAC;IAEpD,qDAAqD;IACrD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,yBAAyB,CAAC;IAErD,uEAAuE;IACvE,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAElC,+EAA+E;IAC/E,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAEzC,qDAAqD;IACrD,eAAe,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAEvC,oDAAoD;IACpD,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAEhD,0FAA0F;IAC1F,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-validate/config",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.1-rc.2",
|
|
4
4
|
"description": "Configuration system for vibe-validate with TypeScript-first design and config templates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"yaml": "^2.8.2",
|
|
38
38
|
"zod": "^3.25.76",
|
|
39
39
|
"zod-to-json-schema": "^3.25.0",
|
|
40
|
-
"@vibe-validate/utils": "0.19.
|
|
40
|
+
"@vibe-validate/utils": "0.19.1-rc.2"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=20.0.0"
|