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.
@@ -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
- scanSilgiExports(join(src, "runtime"));
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 {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { defineCommand, runMain } from 'citty';
3
3
 
4
- const version = "0.34.6";
4
+ const version = "0.34.8";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.34.6",
4
+ "version": "0.34.8",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {