@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
|
-
|
|
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
|
-
|
|
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
|
index 78e47a9..9245e38 100644
|
|
|
Binary file
|