-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflags.ts
More file actions
454 lines (433 loc) · 10.7 KB
/
flags.ts
File metadata and controls
454 lines (433 loc) · 10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
/**
* @fileoverview Common flag utilities for Socket CLI applications.
* Provides consistent flag checking (quiet, silent, verbose, debug, dry-run,
* etc.) across Socket projects, accepting either parsed flag objects or raw
* argv arrays.
*/
import process from 'node:process'
import { ArrayIsArray, StringPrototypeIncludes } from '../primordials'
/**
* Flag values object from parsed arguments.
*/
export interface FlagValues {
[key: string]: unknown
quiet?: boolean
silent?: boolean
verbose?: boolean
help?: boolean
all?: boolean
fix?: boolean
force?: boolean
'dry-run'?: boolean
json?: boolean
debug?: boolean
watch?: boolean
coverage?: boolean
cover?: boolean
update?: boolean
staged?: boolean
changed?: boolean
}
const processArg = [...process.argv]
/**
* Accepted input types for flag checking functions.
* Can be parsed flag values, process.argv array, or undefined (uses process.argv).
*/
export type FlagInput = FlagValues | string[] | readonly string[] | undefined
/**
* Common flag definitions for parseArgs configuration.
* Can be spread into parseArgs options for consistency.
*/
export const COMMON_FLAGS = {
all: {
type: 'boolean' as const,
default: false,
description: 'Target all files',
},
changed: {
type: 'boolean' as const,
default: false,
description: 'Target changed files',
},
coverage: {
type: 'boolean' as const,
default: false,
description: 'Run with coverage',
},
cover: {
type: 'boolean' as const,
default: false,
description: 'Run with coverage (alias)',
},
debug: {
type: 'boolean' as const,
default: false,
description: 'Enable debug output',
},
'dry-run': {
type: 'boolean' as const,
default: false,
description: 'Perform a dry run',
},
fix: {
type: 'boolean' as const,
default: false,
description: 'Automatically fix issues',
},
force: {
type: 'boolean' as const,
default: false,
description: 'Force the operation',
},
help: {
type: 'boolean' as const,
default: false,
short: 'h',
description: 'Show help',
},
json: {
type: 'boolean' as const,
default: false,
description: 'Output as JSON',
},
quiet: {
type: 'boolean' as const,
default: false,
short: 'q',
description: 'Suppress output',
},
silent: {
type: 'boolean' as const,
default: false,
description: 'Suppress all output',
},
staged: {
type: 'boolean' as const,
default: false,
description: 'Target staged files',
},
update: {
type: 'boolean' as const,
default: false,
short: 'u',
description: 'Update snapshots/deps',
},
verbose: {
type: 'boolean' as const,
default: false,
short: 'v',
description: 'Verbose output',
},
watch: {
type: 'boolean' as const,
default: false,
short: 'w',
description: 'Watch mode',
},
}
/**
* Get the appropriate log level based on flags.
* Returns 'silent', 'error', 'warn', 'info', 'verbose', or 'debug'.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* getLogLevel() // 'info' (default)
* getLogLevel({ quiet: true }) // 'silent'
* getLogLevel(['--debug']) // 'debug'
* ```
*/
export function getLogLevel(input?: FlagInput): string {
if (isQuiet(input)) {
return 'silent'
}
if (isDebug(input)) {
return 'debug'
}
if (isVerbose(input)) {
return 'verbose'
}
return 'info'
}
/**
* Check if all flag is set.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isAll({ all: true }) // true
* isAll(['--all']) // true
* ```
*/
export function isAll(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--all')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--all')
}
return !!(input as FlagValues).all
}
/**
* Check if changed files mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isChanged({ changed: true }) // true
* isChanged(['--changed']) // true
* ```
*/
export function isChanged(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--changed')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--changed')
}
return !!(input as FlagValues).changed
}
/**
* Check if coverage mode is enabled.
* Checks both 'coverage' and 'cover' flags.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isCoverage({ coverage: true }) // true
* isCoverage(['--cover']) // true
* ```
*/
export function isCoverage(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--coverage') || processArg.includes('--cover')
}
if (ArrayIsArray(input)) {
return (
StringPrototypeIncludes(input, '--coverage') ||
StringPrototypeIncludes(input, '--cover')
)
}
return !!((input as FlagValues).coverage || (input as FlagValues).cover)
}
/**
* Check if debug mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isDebug({ debug: true }) // true
* isDebug(['--debug']) // true
* ```
*/
export function isDebug(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--debug')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--debug')
}
return !!(input as FlagValues).debug
}
/**
* Check if dry-run mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isDryRun({ 'dry-run': true }) // true
* isDryRun(['--dry-run']) // true
* ```
*/
export function isDryRun(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--dry-run')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--dry-run')
}
return !!(input as FlagValues)['dry-run']
}
/**
* Check if fix/autofix mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isFix({ fix: true }) // true
* isFix(['--fix']) // true
* ```
*/
export function isFix(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--fix')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--fix')
}
return !!(input as FlagValues).fix
}
/**
* Check if force mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isForce({ force: true }) // true
* isForce(['--force']) // true
* ```
*/
export function isForce(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--force')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--force')
}
return !!(input as FlagValues).force
}
/**
* Check if help flag is set.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isHelp({ help: true }) // true
* isHelp(['-h']) // true
* ```
*/
export function isHelp(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--help') || processArg.includes('-h')
}
if (ArrayIsArray(input)) {
return (
StringPrototypeIncludes(input, '--help') ||
StringPrototypeIncludes(input, '-h')
)
}
return !!(input as FlagValues).help
}
/**
* Check if JSON output is requested.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isJson({ json: true }) // true
* isJson(['--json']) // true
* ```
*/
export function isJson(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--json')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--json')
}
return !!(input as FlagValues).json
}
/**
* Check if quiet/silent mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isQuiet({ quiet: true }) // true
* isQuiet(['--silent']) // true
* ```
*/
export function isQuiet(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--quiet') || processArg.includes('--silent')
}
if (ArrayIsArray(input)) {
return (
StringPrototypeIncludes(input, '--quiet') ||
StringPrototypeIncludes(input, '--silent')
)
}
return !!((input as FlagValues).quiet || (input as FlagValues).silent)
}
/**
* Check if staged files mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isStaged({ staged: true }) // true
* isStaged(['--staged']) // true
* ```
*/
export function isStaged(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--staged')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--staged')
}
return !!(input as FlagValues).staged
}
/**
* Check if update mode is enabled (for snapshots, dependencies, etc).
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isUpdate({ update: true }) // true
* isUpdate(['-u']) // true
* ```
*/
export function isUpdate(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--update') || processArg.includes('-u')
}
if (ArrayIsArray(input)) {
return (
StringPrototypeIncludes(input, '--update') ||
StringPrototypeIncludes(input, '-u')
)
}
return !!(input as FlagValues).update
}
/**
* Check if verbose mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isVerbose({ verbose: true }) // true
* isVerbose(['--verbose']) // true
* ```
*/
export function isVerbose(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--verbose')
}
if (ArrayIsArray(input)) {
return StringPrototypeIncludes(input, '--verbose')
}
return !!(input as FlagValues).verbose
}
/**
* Check if watch mode is enabled.
* Accepts FlagValues object, process.argv array, or undefined (uses process.argv).
*
* @example
* ```typescript
* isWatch({ watch: true }) // true
* isWatch(['-w']) // true
* ```
*/
export function isWatch(input?: FlagInput): boolean {
if (!input) {
return processArg.includes('--watch') || processArg.includes('-w')
}
if (ArrayIsArray(input)) {
return (
StringPrototypeIncludes(input, '--watch') ||
StringPrototypeIncludes(input, '-w')
)
}
return !!(input as FlagValues).watch
}