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/index.d.cts CHANGED
@@ -426,7 +426,7 @@ type EntrypointGroup = Entrypoint | Entrypoint[];
426
426
  */
427
427
  declare function clean(root?: string): Promise<void>;
428
428
 
429
- var version = "0.5.3";
429
+ var version = "0.5.4";
430
430
 
431
431
  declare function defineConfig(config: UserConfig): UserConfig;
432
432
 
package/dist/index.d.ts CHANGED
@@ -426,7 +426,7 @@ type EntrypointGroup = Entrypoint | Entrypoint[];
426
426
  */
427
427
  declare function clean(root?: string): Promise<void>;
428
428
 
429
- var version = "0.5.3";
429
+ var version = "0.5.4";
430
430
 
431
431
  declare function defineConfig(config: UserConfig): UserConfig;
432
432
 
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
- "*/*": "ignored"
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.3";
2245
+ var version2 = "0.5.4";
2245
2246
 
2246
2247
  // src/core/utils/defineConfig.ts
2247
2248
  function defineConfig(config) {