@kernocal/validate-store 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -106,9 +106,9 @@ var src_default = defineWxtModule({
106
106
  storeExportsDir: resolve(wxt.config.root, "store/exports")
107
107
  });
108
108
  if (!parsedOptions.enabled) return wxt.logger.warn("`[validate-store]` module disabled");
109
- const { storeData } = await import(pathToFileURL(parsedOptions.storeDataSrc).href);
110
109
  wxt.hook("build:manifestGenerated", async (_wxt, manifest) => {
111
110
  if (_wxt.config.mode === "development") return;
111
+ const { storeData } = await import(pathToFileURL(parsedOptions.storeDataSrc).href);
112
112
  const issues = [];
113
113
  const { root } = _wxt.config;
114
114
  const { screenshots, largePromoTile, smallPromoTile } = storeData.common;
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "wxt-module"
11
11
  ],
12
12
  "license": "MIT",
13
- "version": "0.1.4",
13
+ "version": "0.1.5",
14
14
  "type": "module",
15
15
  "module": "./dist/index.js",
16
16
  "types": "./dist/index.d.ts",