@riboseinc/anafero-cli 0.0.33 → 0.0.34

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/build-site.mjs CHANGED
@@ -321470,10 +321470,13 @@ var fetchDependency = async function fetchDependency2(moduleRef, onProgress) {
321470
321470
  console,
321471
321471
  Function,
321472
321472
  setTimeout,
321473
- setInterval
321473
+ setInterval,
321474
+ TextEncoder
321474
321475
  });
321475
321476
  const mod = new vm.SourceTextModule(code2, {
321476
- identifier: "test",
321477
+ // TODO: Try moduleRef as VM module identifier?
321478
+ // Take care of special characters, though.
321479
+ identifier: "anafero-dependency",
321477
321480
  context: context9
321478
321481
  });
321479
321482
  async function link4(specifier, referencingModule) {
package/dependencies.mts CHANGED
@@ -259,9 +259,12 @@ async function fetchDependency(
259
259
  Function,
260
260
  setTimeout,
261
261
  setInterval,
262
+ TextEncoder,
262
263
  });
263
264
  const mod = new vm.SourceTextModule(code, {
264
- identifier: 'test',
265
+ // TODO: Try moduleRef as VM module identifier?
266
+ // Take care of special characters, though.
267
+ identifier: 'anafero-dependency',
265
268
  context,
266
269
  });
267
270
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@riboseinc/anafero-cli",
3
3
  "type": "module",
4
- "version": "0.0.33",
4
+ "version": "0.0.34",
5
5
  "packageManager": "yarn@4.5.0",
6
6
  "bin": {
7
7
  "build-site": "build-site.mjs"
index 78e47a9..9245e38 100644
Binary file