Skip to content

Commit e3ea0f5

Browse files
authored
fix: support csv reporter flags (#1252)
1 parent e3fa26b commit e3ea0f5

7 files changed

Lines changed: 7 additions & 0 deletions

File tree

packages/cli/src/commands/checks/list.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export default class ChecksList extends AuthCommand {
3333
char: 't',
3434
description: 'Filter by tag. Can be specified multiple times.',
3535
multiple: true,
36+
delimiter: ',',
3637
}),
3738
'search': Flags.string({
3839
char: 's',

packages/cli/src/commands/debug/parse-file.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export default class ParseFileCommand extends Command {
2323
}),
2424
'supported-module': Flags.string({
2525
multiple: true,
26+
delimiter: ',',
2627
default: [],
2728
}),
2829
'check-unsupported-modules': Flags.boolean({

packages/cli/src/commands/debug/parse-project.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ export default class ParseProjectCommand extends Command {
7373
'inject-private-location': Flags.string({
7474
description: 'Pretend that the given private location exists (e.g., "70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location").',
7575
multiple: true,
76+
delimiter: ',',
7677
default: [],
7778
}),
7879
}

packages/cli/src/commands/incidents/create.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export default class IncidentsCreate extends AuthCommand {
3030
'services': Flags.string({
3131
description: 'Affected service IDs. Repeat the flag for multiple services.',
3232
multiple: true,
33+
delimiter: ',',
3334
}),
3435
'severity': Flags.string({
3536
description: 'Incident severity.',

packages/cli/src/commands/pw-test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export default class PwTestCommand extends AuthCommand {
7777
description: 'A list of custom reporters for the test output.',
7878
options: ['list', 'dot', 'ci', 'github', 'json'],
7979
multiple: true,
80+
delimiter: ',',
8081
}),
8182
'config': Flags.string({
8283
description: commonMessages.configFile,

packages/cli/src/commands/test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export default class Test extends AuthCommand {
8686
description: 'A list of custom reporters for the test output.',
8787
options: ['list', 'dot', 'ci', 'github', 'json'],
8888
multiple: true,
89+
delimiter: ',',
8990
}),
9091
'config': Flags.string({
9192
char: 'c',

packages/cli/src/commands/trigger.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export default class Trigger extends AuthCommand {
6969
description: 'A list of custom reporters for the test output.',
7070
options: ['list', 'dot', 'ci', 'github', 'json'],
7171
multiple: true,
72+
delimiter: ',',
7273
}),
7374
'env': Flags.string({
7475
char: 'e',

0 commit comments

Comments
 (0)