Skip to content

Commit 6e0c662

Browse files
committed
fix: re-add bundle output file flag
1 parent 895168b commit 6e0c662

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/cli/src/commands/deploy.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ export default class Deploy extends AuthCommand {
6767
default: false,
6868
hidden: true,
6969
}),
70+
'debug-bundle-output-file': Flags.string({
71+
description: 'The file to output the debug debug bundle to.',
72+
default: './debug-bundle.json',
73+
hidden: true,
74+
}),
7075
}
7176

7277
async run (): Promise<void> {
@@ -83,7 +88,6 @@ export default class Deploy extends AuthCommand {
8388
'verify-runtime-dependencies': verifyRuntimeDependencies,
8489
'debug-bundle': debugBundle,
8590
'debug-bundle-output-file': debugBundleOutputFile,
86-
playwrightConfig,
8791
} = flags
8892
const { configDirectory, configFilenames } = splitConfigFilePath(configFilename)
8993
const {

0 commit comments

Comments
 (0)