silgi 0.34.6 → 0.34.8
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/build.mjs +2 -1
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -740,7 +740,8 @@ async function _resolveSilgiModule(silgiModule, silgi) {
|
|
|
740
740
|
conditions: silgi.options.conditions
|
|
741
741
|
});
|
|
742
742
|
const moduleMetadataPath = new URL("module.json", src);
|
|
743
|
-
|
|
743
|
+
const runtimeFolder = new URL("runtime", src);
|
|
744
|
+
await scanSilgiExports(runtimeFolder.pathname);
|
|
744
745
|
if (existsSync(moduleMetadataPath)) {
|
|
745
746
|
buildTimeModuleMeta = JSON.parse(await promises.readFile(moduleMetadataPath, "utf-8"));
|
|
746
747
|
} else {
|
package/dist/cli/index.mjs
CHANGED