helm-env-delta 1.15.2 → 2.0.0
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/README.md +279 -95
- package/config.schema.json +496 -0
- package/dist/commandLine.d.ts +9 -11
- package/dist/commandLine.js +288 -101
- package/dist/config/ZodError.d.ts +2 -2
- package/dist/config/configFile.d.ts +1 -1
- package/dist/config/configFile.js +87 -41
- package/dist/config/configLoader.d.ts +2 -1
- package/dist/config/configMerger.d.ts +2 -1
- package/dist/consoleFormatter.d.ts +1 -1
- package/dist/consoleFormatter.js +12 -12
- package/dist/exitCodes.d.ts +5 -0
- package/dist/exitCodes.js +8 -0
- package/dist/index.js +82 -77
- package/dist/logger.d.ts +3 -3
- package/dist/pipeline/fileDiff.d.ts +6 -5
- package/dist/pipeline/fileLoader.d.ts +2 -1
- package/dist/pipeline/fileLoader.js +2 -2
- package/dist/pipeline/fileUpdater.d.ts +4 -4
- package/dist/pipeline/fileUpdater.js +1 -1
- package/dist/pipeline/stopRulesValidator.d.ts +2 -1
- package/dist/pipeline/stopRulesValidator.js +2 -4
- package/dist/pipeline/yamlFormatter.d.ts +1 -1
- package/dist/pipeline/yamlFormatter.js +9 -9
- package/dist/reporters/browserLauncher.js +1 -34
- package/dist/reporters/consoleDiffReporter.d.ts +2 -2
- package/dist/reporters/consoleDiffReporter.js +26 -26
- package/dist/reporters/htmlReporter.d.ts +4 -3
- package/dist/reporters/htmlReporter.js +20 -10
- package/dist/reporters/htmlTemplate.d.ts +1 -1
- package/dist/reporters/jsonReporter.d.ts +2 -2
- package/dist/reporters/treeRenderer.d.ts +1 -1
- package/dist/suggestionEngine.d.ts +2 -2
- package/dist/suggestionEngine.js +2 -2
- package/dist/utils/arrayMerger.d.ts +1 -1
- package/dist/utils/patternMatcher.d.ts +1 -1
- package/dist/utils/versionChecker.js +3 -3
- package/package.json +19 -17
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "helm-env-delta Configuration",
|
|
4
|
+
"description": "JSON Schema for helm-env-delta (hed) config files. Reference via yaml-language-server modeline or VS Code yaml.schemas setting.",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"extends": {
|
|
8
|
+
"description": "Path to a parent config file to inherit from (up to 5 levels deep)",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"minLength": 1
|
|
11
|
+
},
|
|
12
|
+
"requiredVersion": {
|
|
13
|
+
"description": "Minimum required hed CLI version (e.g. \"1.2.3\"); also suppresses auto-update notifications",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"minLength": 1,
|
|
16
|
+
"pattern": "^v?(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$"
|
|
17
|
+
},
|
|
18
|
+
"source": {
|
|
19
|
+
"description": "Path to the source directory (environment to copy FROM)",
|
|
20
|
+
"type": "string",
|
|
21
|
+
"minLength": 1
|
|
22
|
+
},
|
|
23
|
+
"destination": {
|
|
24
|
+
"description": "Path to the destination directory (environment to sync INTO)",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"minLength": 1
|
|
27
|
+
},
|
|
28
|
+
"include": {
|
|
29
|
+
"description": "Glob patterns for files to include (default: [\"**/*\"])",
|
|
30
|
+
"type": "array",
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"minLength": 1
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"exclude": {
|
|
37
|
+
"description": "Glob patterns for files to exclude from processing",
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"minLength": 1
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"prune": {
|
|
45
|
+
"description": "Delete destination files that no longer exist in source (default: false)",
|
|
46
|
+
"type": "boolean"
|
|
47
|
+
},
|
|
48
|
+
"confirmationDelay": {
|
|
49
|
+
"description": "Milliseconds to pause before applying changes (default: 3000; 0 = no delay)",
|
|
50
|
+
"type": "integer",
|
|
51
|
+
"minimum": 0,
|
|
52
|
+
"maximum": 9007199254740991
|
|
53
|
+
},
|
|
54
|
+
"skipPath": {
|
|
55
|
+
"description": "Per-file-glob map of JSONPath patterns whose destination values are preserved",
|
|
56
|
+
"type": "object",
|
|
57
|
+
"propertyNames": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"additionalProperties": {
|
|
61
|
+
"type": "array",
|
|
62
|
+
"items": {
|
|
63
|
+
"type": "string"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"outputFormat": {
|
|
68
|
+
"description": "YAML output formatting rules applied after merge",
|
|
69
|
+
"type": "object",
|
|
70
|
+
"properties": {
|
|
71
|
+
"indent": {
|
|
72
|
+
"description": "Number of spaces for YAML indentation (1–10, default: 2)",
|
|
73
|
+
"type": "integer",
|
|
74
|
+
"minimum": 1,
|
|
75
|
+
"maximum": 10
|
|
76
|
+
},
|
|
77
|
+
"keySeparator": {
|
|
78
|
+
"description": "Insert a blank line between top-level keys (default: false)",
|
|
79
|
+
"type": "boolean"
|
|
80
|
+
},
|
|
81
|
+
"quoteValues": {
|
|
82
|
+
"description": "Per-file-glob map of JSONPath patterns whose values should be quoted",
|
|
83
|
+
"type": "object",
|
|
84
|
+
"propertyNames": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"additionalProperties": {
|
|
88
|
+
"type": "array",
|
|
89
|
+
"items": {
|
|
90
|
+
"type": "string"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"keyOrders": {
|
|
95
|
+
"description": "Per-file-glob explicit key ordering arrays",
|
|
96
|
+
"type": "object",
|
|
97
|
+
"propertyNames": {
|
|
98
|
+
"type": "string"
|
|
99
|
+
},
|
|
100
|
+
"additionalProperties": {
|
|
101
|
+
"type": "array",
|
|
102
|
+
"items": {
|
|
103
|
+
"type": "string"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"keySort": {
|
|
108
|
+
"description": "Per-file-glob rules for alphabetically sorting object keys at a path",
|
|
109
|
+
"type": "object",
|
|
110
|
+
"propertyNames": {
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
"additionalProperties": {
|
|
114
|
+
"type": "array",
|
|
115
|
+
"items": {
|
|
116
|
+
"type": "object",
|
|
117
|
+
"properties": {
|
|
118
|
+
"path": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"minLength": 1,
|
|
121
|
+
"description": "JSONPath to the object whose keys should be sorted alphabetically"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"required": [
|
|
125
|
+
"path"
|
|
126
|
+
],
|
|
127
|
+
"additionalProperties": false
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"arraySort": {
|
|
132
|
+
"description": "Per-file-glob rules for sorting array elements at a path",
|
|
133
|
+
"type": "object",
|
|
134
|
+
"propertyNames": {
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
"additionalProperties": {
|
|
138
|
+
"type": "array",
|
|
139
|
+
"items": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"properties": {
|
|
142
|
+
"path": {
|
|
143
|
+
"type": "string",
|
|
144
|
+
"minLength": 1,
|
|
145
|
+
"description": "JSONPath to the array to sort"
|
|
146
|
+
},
|
|
147
|
+
"sortBy": {
|
|
148
|
+
"description": "Object property to sort by (required for arrays of objects; omit for scalar arrays)",
|
|
149
|
+
"type": "string",
|
|
150
|
+
"minLength": 1
|
|
151
|
+
},
|
|
152
|
+
"order": {
|
|
153
|
+
"default": "asc",
|
|
154
|
+
"description": "Sort direction: \"asc\" or \"desc\" (default: \"asc\")",
|
|
155
|
+
"type": "string",
|
|
156
|
+
"enum": [
|
|
157
|
+
"asc",
|
|
158
|
+
"desc"
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"required": [
|
|
163
|
+
"path",
|
|
164
|
+
"order"
|
|
165
|
+
],
|
|
166
|
+
"additionalProperties": false
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"additionalProperties": false
|
|
172
|
+
},
|
|
173
|
+
"transforms": {
|
|
174
|
+
"description": "Per-file-glob regex and file-based content/filename transform rules",
|
|
175
|
+
"type": "object",
|
|
176
|
+
"propertyNames": {
|
|
177
|
+
"type": "string"
|
|
178
|
+
},
|
|
179
|
+
"additionalProperties": {
|
|
180
|
+
"type": "object",
|
|
181
|
+
"properties": {
|
|
182
|
+
"content": {
|
|
183
|
+
"type": "array",
|
|
184
|
+
"items": {
|
|
185
|
+
"type": "object",
|
|
186
|
+
"properties": {
|
|
187
|
+
"find": {
|
|
188
|
+
"type": "string",
|
|
189
|
+
"minLength": 1,
|
|
190
|
+
"description": "Regex pattern to find"
|
|
191
|
+
},
|
|
192
|
+
"replace": {
|
|
193
|
+
"type": "string",
|
|
194
|
+
"description": "Replacement string (supports $1, $2... capture groups)"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"required": [
|
|
198
|
+
"find",
|
|
199
|
+
"replace"
|
|
200
|
+
],
|
|
201
|
+
"additionalProperties": false
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"filename": {
|
|
205
|
+
"type": "array",
|
|
206
|
+
"items": {
|
|
207
|
+
"type": "object",
|
|
208
|
+
"properties": {
|
|
209
|
+
"find": {
|
|
210
|
+
"type": "string",
|
|
211
|
+
"minLength": 1,
|
|
212
|
+
"description": "Regex pattern to find"
|
|
213
|
+
},
|
|
214
|
+
"replace": {
|
|
215
|
+
"type": "string",
|
|
216
|
+
"description": "Replacement string (supports $1, $2... capture groups)"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"required": [
|
|
220
|
+
"find",
|
|
221
|
+
"replace"
|
|
222
|
+
],
|
|
223
|
+
"additionalProperties": false
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"contentFile": {
|
|
227
|
+
"anyOf": [
|
|
228
|
+
{
|
|
229
|
+
"type": "string",
|
|
230
|
+
"minLength": 1
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "array",
|
|
234
|
+
"items": {
|
|
235
|
+
"type": "string",
|
|
236
|
+
"minLength": 1
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
"filenameFile": {
|
|
242
|
+
"anyOf": [
|
|
243
|
+
{
|
|
244
|
+
"type": "string",
|
|
245
|
+
"minLength": 1
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"type": "array",
|
|
249
|
+
"items": {
|
|
250
|
+
"type": "string",
|
|
251
|
+
"minLength": 1
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
"additionalProperties": false
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"stopRules": {
|
|
261
|
+
"description": "Per-file-glob validation rules that block sync if triggered (use --force to override)",
|
|
262
|
+
"type": "object",
|
|
263
|
+
"propertyNames": {
|
|
264
|
+
"type": "string"
|
|
265
|
+
},
|
|
266
|
+
"additionalProperties": {
|
|
267
|
+
"type": "array",
|
|
268
|
+
"items": {
|
|
269
|
+
"oneOf": [
|
|
270
|
+
{
|
|
271
|
+
"type": "object",
|
|
272
|
+
"properties": {
|
|
273
|
+
"type": {
|
|
274
|
+
"type": "string",
|
|
275
|
+
"const": "semverMajorUpgrade"
|
|
276
|
+
},
|
|
277
|
+
"path": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"minLength": 1,
|
|
280
|
+
"description": "JSONPath to the version field to check for major upgrades"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"required": [
|
|
284
|
+
"type",
|
|
285
|
+
"path"
|
|
286
|
+
],
|
|
287
|
+
"additionalProperties": false
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"type": "object",
|
|
291
|
+
"properties": {
|
|
292
|
+
"type": {
|
|
293
|
+
"type": "string",
|
|
294
|
+
"const": "semverDowngrade"
|
|
295
|
+
},
|
|
296
|
+
"path": {
|
|
297
|
+
"type": "string",
|
|
298
|
+
"minLength": 1,
|
|
299
|
+
"description": "JSONPath to the version field to check for any downgrade"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"required": [
|
|
303
|
+
"type",
|
|
304
|
+
"path"
|
|
305
|
+
],
|
|
306
|
+
"additionalProperties": false
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"type": "object",
|
|
310
|
+
"properties": {
|
|
311
|
+
"type": {
|
|
312
|
+
"type": "string",
|
|
313
|
+
"const": "numeric"
|
|
314
|
+
},
|
|
315
|
+
"path": {
|
|
316
|
+
"type": "string",
|
|
317
|
+
"minLength": 1,
|
|
318
|
+
"description": "JSONPath to the numeric field to validate"
|
|
319
|
+
},
|
|
320
|
+
"min": {
|
|
321
|
+
"description": "Minimum allowed value (inclusive)",
|
|
322
|
+
"type": "number"
|
|
323
|
+
},
|
|
324
|
+
"max": {
|
|
325
|
+
"description": "Maximum allowed value (inclusive)",
|
|
326
|
+
"type": "number"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"required": [
|
|
330
|
+
"type",
|
|
331
|
+
"path"
|
|
332
|
+
],
|
|
333
|
+
"additionalProperties": false
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"type": "object",
|
|
337
|
+
"properties": {
|
|
338
|
+
"type": {
|
|
339
|
+
"type": "string",
|
|
340
|
+
"const": "regex"
|
|
341
|
+
},
|
|
342
|
+
"path": {
|
|
343
|
+
"description": "JSONPath to check (omit to scan ALL values recursively)",
|
|
344
|
+
"type": "string",
|
|
345
|
+
"minLength": 1
|
|
346
|
+
},
|
|
347
|
+
"regex": {
|
|
348
|
+
"type": "string",
|
|
349
|
+
"minLength": 1,
|
|
350
|
+
"description": "Regex pattern that must NOT match (blocks sync if matched)"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"required": [
|
|
354
|
+
"type",
|
|
355
|
+
"regex"
|
|
356
|
+
],
|
|
357
|
+
"additionalProperties": false
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "object",
|
|
361
|
+
"properties": {
|
|
362
|
+
"type": {
|
|
363
|
+
"type": "string",
|
|
364
|
+
"const": "regexFile"
|
|
365
|
+
},
|
|
366
|
+
"path": {
|
|
367
|
+
"description": "JSONPath to check (omit to scan ALL values recursively)",
|
|
368
|
+
"type": "string",
|
|
369
|
+
"minLength": 1
|
|
370
|
+
},
|
|
371
|
+
"file": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"minLength": 1,
|
|
374
|
+
"description": "Path to a YAML file containing an array of regex patterns"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"required": [
|
|
378
|
+
"type",
|
|
379
|
+
"file"
|
|
380
|
+
],
|
|
381
|
+
"additionalProperties": false
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"type": "object",
|
|
385
|
+
"properties": {
|
|
386
|
+
"type": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"const": "regexFileKey"
|
|
389
|
+
},
|
|
390
|
+
"path": {
|
|
391
|
+
"description": "JSONPath to check (omit to scan ALL values recursively)",
|
|
392
|
+
"type": "string",
|
|
393
|
+
"minLength": 1
|
|
394
|
+
},
|
|
395
|
+
"file": {
|
|
396
|
+
"type": "string",
|
|
397
|
+
"minLength": 1,
|
|
398
|
+
"description": "Path to a YAML file whose keys are used as regex patterns"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"required": [
|
|
402
|
+
"type",
|
|
403
|
+
"file"
|
|
404
|
+
],
|
|
405
|
+
"additionalProperties": false
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"type": "object",
|
|
409
|
+
"properties": {
|
|
410
|
+
"type": {
|
|
411
|
+
"type": "string",
|
|
412
|
+
"const": "versionFormat"
|
|
413
|
+
},
|
|
414
|
+
"path": {
|
|
415
|
+
"type": "string",
|
|
416
|
+
"minLength": 1,
|
|
417
|
+
"description": "JSONPath to the version field to validate format"
|
|
418
|
+
},
|
|
419
|
+
"vPrefix": {
|
|
420
|
+
"default": "allowed",
|
|
421
|
+
"description": "\"required\" = must start with v, \"allowed\" = either, \"forbidden\" = no v (default: \"allowed\")",
|
|
422
|
+
"type": "string",
|
|
423
|
+
"enum": [
|
|
424
|
+
"required",
|
|
425
|
+
"allowed",
|
|
426
|
+
"forbidden"
|
|
427
|
+
]
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"required": [
|
|
431
|
+
"type",
|
|
432
|
+
"path",
|
|
433
|
+
"vPrefix"
|
|
434
|
+
],
|
|
435
|
+
"additionalProperties": false
|
|
436
|
+
}
|
|
437
|
+
]
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"fixedValues": {
|
|
442
|
+
"description": "Per-file-glob rules that pin specific JSONPath locations to constant values after merge",
|
|
443
|
+
"type": "object",
|
|
444
|
+
"propertyNames": {
|
|
445
|
+
"type": "string"
|
|
446
|
+
},
|
|
447
|
+
"additionalProperties": {
|
|
448
|
+
"type": "array",
|
|
449
|
+
"items": {
|
|
450
|
+
"type": "object",
|
|
451
|
+
"properties": {
|
|
452
|
+
"path": {
|
|
453
|
+
"type": "string",
|
|
454
|
+
"minLength": 1,
|
|
455
|
+
"description": "JSONPath to the value to set"
|
|
456
|
+
},
|
|
457
|
+
"value": {
|
|
458
|
+
"anyOf": [
|
|
459
|
+
{
|
|
460
|
+
"type": "string"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"type": "number"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"type": "boolean"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"type": "null"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"type": "array",
|
|
473
|
+
"items": {}
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"type": "object",
|
|
477
|
+
"propertyNames": {
|
|
478
|
+
"type": "string"
|
|
479
|
+
},
|
|
480
|
+
"additionalProperties": {}
|
|
481
|
+
}
|
|
482
|
+
],
|
|
483
|
+
"description": "The constant value to set (any type: string, number, boolean, null, object, array)"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"required": [
|
|
487
|
+
"path",
|
|
488
|
+
"value"
|
|
489
|
+
],
|
|
490
|
+
"additionalProperties": false
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"additionalProperties": false
|
|
496
|
+
}
|
package/dist/commandLine.d.ts
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
export type ChangeMode = 'new' | 'modified' | 'deleted' | 'all';
|
|
2
|
+
export type CommandName = 'run' | 'validate' | 'format' | 'suggest' | 'diff' | 'list-files' | 'show-config';
|
|
2
3
|
export type SyncCommand = {
|
|
4
|
+
commandName: CommandName;
|
|
3
5
|
config: string;
|
|
4
6
|
dryRun: boolean;
|
|
5
7
|
force: boolean;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
strict: boolean;
|
|
9
|
+
html: boolean;
|
|
10
|
+
json: boolean;
|
|
11
|
+
reportOutput?: string;
|
|
9
12
|
skipFormat: boolean;
|
|
10
|
-
formatOnly: boolean;
|
|
11
|
-
validate: boolean;
|
|
12
|
-
verbose: boolean;
|
|
13
|
-
quiet: boolean;
|
|
14
|
-
listFiles: boolean;
|
|
15
|
-
showConfig: boolean;
|
|
16
|
-
noColor: boolean;
|
|
17
|
-
suggest: boolean;
|
|
18
13
|
suggestThreshold: number;
|
|
19
14
|
filter?: string;
|
|
20
15
|
mode: ChangeMode;
|
|
21
16
|
my: boolean;
|
|
22
17
|
myDays: number;
|
|
18
|
+
verbose: boolean;
|
|
19
|
+
quiet: boolean;
|
|
20
|
+
noColor: boolean;
|
|
23
21
|
};
|
|
24
22
|
export declare const parseCommandLine: (argv?: string[]) => SyncCommand;
|