File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ webExt.cmd.run({
149149If you would like to run an extension on Firefox for Android:
150150
151151``` js
152- import adbUtils from " web-ext/util/adb" ;
152+ import * as adbUtils from " web-ext/util/adb" ;
153153
154154// Path to adb binary (optional parameter, auto-detected if missing)
155155const adbBin = " /path/to/adb" ;
@@ -173,7 +173,7 @@ webExt.cmd.run({
173173If you would like to control logging, you can access the logger object. Here is an example of turning on verbose logging:
174174
175175``` js
176- import webExtLogger from " web-ext/util/logger" ;
176+ import * as webExtLogger from " web-ext/util/logger" ;
177177
178178webExtLogger .consoleStream .makeVerbose ();
179179webExt .cmd .run ({sourceDir: ' ./src' }, {shouldExitProgram: false });
You can’t perform that action at this time.
0 commit comments