File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ export default async function run(
3131 noInput = false ,
3232 noReload = false ,
3333 preInstall = false ,
34+ noReloadManagerExtension = false ,
3435 sourceDir,
3536 watchFile,
3637 watchIgnored,
@@ -194,6 +195,7 @@ export default async function run(
194195 chromiumBinary,
195196 chromiumProfile,
196197 customChromiumPrefs,
198+ noReloadManagerExtension,
197199 } ;
198200
199201 const chromiumRunner = await createExtensionRunner ( {
Original file line number Diff line number Diff line change @@ -136,7 +136,9 @@ export class ChromiumExtensionRunner {
136136 this . reloadManagerExtension = await this . createReloadManagerExtension ( ) ;
137137
138138 // Start chrome pointing it to a given profile dir
139- const extensions = [ this . reloadManagerExtension ]
139+ const extensions = (
140+ this . params . noReloadManagerExtension ? [ ] : [ this . reloadManagerExtension ]
141+ )
140142 . concat ( this . params . extensions . map ( ( { sourceDir } ) => sourceDir ) )
141143 . join ( ',' ) ;
142144
You can’t perform that action at this time.
0 commit comments