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.cjs CHANGED
@@ -1224,6 +1224,7 @@ var PATH_GLOB_TO_TYPE_MAP = {
1224
1224
  "devtools.html": "devtools",
1225
1225
  "devtools/index.html": "devtools",
1226
1226
  "background.ts": "background",
1227
+ "background/index.ts": "background",
1227
1228
  [VIRTUAL_NOOP_BACKGROUND_MODULE_ID]: "background",
1228
1229
  "content.ts?(x)": "content-script",
1229
1230
  "content/index.ts?(x)": "content-script",
@@ -1243,8 +1244,8 @@ var PATH_GLOB_TO_TYPE_MAP = {
1243
1244
  "*/index.ts": "unlisted-script",
1244
1245
  [`*.${CSS_EXTENSIONS_PATTERN}`]: "unlisted-style",
1245
1246
  [`*/index.${CSS_EXTENSIONS_PATTERN}`]: "unlisted-style",
1246
- // Don't warn about any files in subdirectories, like CSS or JS entrypoints for HTML files
1247
- "*/*": "ignored"
1247
+ // Don't warn about any files in subdirectories, like CSS or JS entrypoints for HTML files or tests
1248
+ "*/**": "ignored"
1248
1249
  };
1249
1250
  var CONTENT_SCRIPT_OUT_DIR = "content-scripts";
1250
1251
 
@@ -2282,7 +2283,7 @@ async function clean(root = process.cwd()) {
2282
2283
  }
2283
2284
 
2284
2285
  // package.json
2285
- var version2 = "0.5.3";
2286
+ var version2 = "0.5.4";
2286
2287
 
2287
2288
  // src/core/utils/defineConfig.ts
2288
2289
  function defineConfig(config) {