wxt 0.18.11 → 0.18.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/{chunk-XNTIBS6O.js → chunk-6QN6UXBH.js} +63 -34
- package/dist/cli.js +63 -31
- package/dist/client.d.ts +4 -2
- package/dist/client.js +8 -1
- package/dist/{index-Bk-a0SkY.d.ts → define-app-config-bg54F_lV.d.ts} +21 -1
- package/dist/{index-CER9SLWP.d.ts → index-1N-eQJJh.d.cts} +4 -0
- package/dist/{index-CER9SLWP.d.cts → index-1N-eQJJh.d.ts} +4 -0
- package/dist/index.cjs +172 -140
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +13 -9
- package/dist/modules.d.cts +1 -1
- package/dist/modules.d.ts +1 -1
- package/dist/sandbox.d.ts +2 -1
- package/dist/sandbox.js +6 -0
- package/dist/testing.cjs +75 -54
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +4 -2
- package/package.json +2 -2
- package/dist/cli.d.ts +0 -2
|
@@ -923,6 +923,10 @@ interface ExtensionRunnerConfig {
|
|
|
923
923
|
* }
|
|
924
924
|
*/
|
|
925
925
|
chromiumPref?: string;
|
|
926
|
+
/**
|
|
927
|
+
* By default, chrome opens a random port for debugging. Set this value to use a specific port.
|
|
928
|
+
*/
|
|
929
|
+
chromiumPort?: number;
|
|
926
930
|
/**
|
|
927
931
|
* @see https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#pref
|
|
928
932
|
*/
|
|
@@ -923,6 +923,10 @@ interface ExtensionRunnerConfig {
|
|
|
923
923
|
* }
|
|
924
924
|
*/
|
|
925
925
|
chromiumPref?: string;
|
|
926
|
+
/**
|
|
927
|
+
* By default, chrome opens a random port for debugging. Set this value to use a specific port.
|
|
928
|
+
*/
|
|
929
|
+
chromiumPort?: number;
|
|
926
930
|
/**
|
|
927
931
|
* @see https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#pref
|
|
928
932
|
*/
|