wxt 0.5.3 → 0.5.4
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/dist/cli.cjs +5 -4
- package/dist/index.cjs +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1183,6 +1183,7 @@ var PATH_GLOB_TO_TYPE_MAP = {
|
|
|
1183
1183
|
"devtools.html": "devtools",
|
|
1184
1184
|
"devtools/index.html": "devtools",
|
|
1185
1185
|
"background.ts": "background",
|
|
1186
|
+
"background/index.ts": "background",
|
|
1186
1187
|
[VIRTUAL_NOOP_BACKGROUND_MODULE_ID]: "background",
|
|
1187
1188
|
"content.ts?(x)": "content-script",
|
|
1188
1189
|
"content/index.ts?(x)": "content-script",
|
|
@@ -1202,8 +1203,8 @@ var PATH_GLOB_TO_TYPE_MAP = {
|
|
|
1202
1203
|
"*/index.ts": "unlisted-script",
|
|
1203
1204
|
[`*.${CSS_EXTENSIONS_PATTERN}`]: "unlisted-style",
|
|
1204
1205
|
[`*/index.${CSS_EXTENSIONS_PATTERN}`]: "unlisted-style",
|
|
1205
|
-
// Don't warn about any files in subdirectories, like CSS or JS entrypoints for HTML files
|
|
1206
|
-
"
|
|
1206
|
+
// Don't warn about any files in subdirectories, like CSS or JS entrypoints for HTML files or tests
|
|
1207
|
+
"*/**": "ignored"
|
|
1207
1208
|
};
|
|
1208
1209
|
var CONTENT_SCRIPT_OUT_DIR = "content-scripts";
|
|
1209
1210
|
|
|
@@ -2241,7 +2242,7 @@ async function clean(root = process.cwd()) {
|
|
|
2241
2242
|
}
|
|
2242
2243
|
|
|
2243
2244
|
// package.json
|
|
2244
|
-
var version2 = "0.5.
|
|
2245
|
+
var version2 = "0.5.4";
|
|
2245
2246
|
|
|
2246
2247
|
// src/core/utils/defineConfig.ts
|
|
2247
2248
|
function defineConfig(config) {
|