@absolutejs/sync 1.6.0 → 1.7.1
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/engine/index.js +2 -1
- package/dist/engine/index.js.map +3 -3
- package/dist/engine/sandbox.d.ts +32 -6
- package/dist/index.js +2 -1
- package/dist/index.js.map +3 -3
- package/package.json +3 -3
package/dist/engine/index.js
CHANGED
|
@@ -1113,6 +1113,7 @@ var wrap = (source) => `
|
|
|
1113
1113
|
var compile = async (source, config) => {
|
|
1114
1114
|
const { createIsolate } = await loadIsolatedJsc();
|
|
1115
1115
|
const isolate = await createIsolate({
|
|
1116
|
+
backend: config.backend ?? "auto",
|
|
1116
1117
|
memoryLimit: config.memoryLimit ?? 32
|
|
1117
1118
|
});
|
|
1118
1119
|
const script = await isolate.compileScript(wrap(source));
|
|
@@ -2761,5 +2762,5 @@ export {
|
|
|
2761
2762
|
CdcConsumerSlowError
|
|
2762
2763
|
};
|
|
2763
2764
|
|
|
2764
|
-
//# debugId=
|
|
2765
|
+
//# debugId=620DC2190D93B27E64756E2164756E21
|
|
2765
2766
|
//# sourceMappingURL=index.js.map
|