File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export default async function run(
33
33
noInput = false ,
34
34
noReload = false ,
35
35
preInstall = false ,
36
+ noReloadManagerExtension = false ,
36
37
sourceDir,
37
38
watchFile,
38
39
watchIgnored,
@@ -197,6 +198,7 @@ export default async function run(
197
198
chromiumBinary,
198
199
chromiumProfile,
199
200
customChromiumPrefs,
201
+ noReloadManagerExtension,
200
202
} ;
201
203
202
204
const chromiumRunner = await createExtensionRunner ( {
Original file line number Diff line number Diff line change @@ -139,7 +139,9 @@ export class ChromiumExtensionRunner {
139
139
this . reloadManagerExtension = await this . createReloadManagerExtension ( ) ;
140
140
141
141
// Start chrome pointing it to a given profile dir
142
- const extensions = [ this . reloadManagerExtension ]
142
+ const extensions = (
143
+ this . params . noReloadManagerExtension ? [ ] : [ this . reloadManagerExtension ]
144
+ )
143
145
. concat ( this . params . extensions . map ( ( { sourceDir } ) => sourceDir ) )
144
146
. join ( ',' ) ;
145
147
You can’t perform that action at this time.
0 commit comments