@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.
- package/dist/index.js +1 -1
- 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;
|