@utoo/web 1.2.0-rc.11 → 1.2.0-rc.13
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/esm/{7a09b7ab69b3abceced7.wasm → 228c553cfd657d45e49a.wasm} +0 -0
- package/esm/loaderWorker.js +1 -1
- package/esm/project/InternalProject.d.ts +1 -1
- package/esm/project/InternalProject.js +2 -7
- package/esm/project/Project.js +3 -4
- package/esm/utoo/index.js +8 -8
- package/esm/utoo/index_bg.wasm +0 -0
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ declare class InternalEndpoint implements ProjectEndpoint {
|
|
|
24
24
|
rmdir(path: string, options?: {
|
|
25
25
|
recursive?: boolean;
|
|
26
26
|
}): Promise<void>;
|
|
27
|
-
gzip(files: PackFile[]): Promise<Uint8Array<
|
|
27
|
+
gzip(files: PackFile[]): Promise<Uint8Array<ArrayBufferLike>>;
|
|
28
28
|
sigMd5(content: Uint8Array): Promise<string>;
|
|
29
29
|
}
|
|
30
30
|
declare const internalEndpoint: InternalEndpoint;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as comlink from "comlink";
|
|
2
1
|
import initWasm, { initLogFilter, Project as ProjectInternal, } from "../utoo";
|
|
3
2
|
import { runLoaderWorkerPool } from "../webpackLoaders/loaderWorkerPool";
|
|
4
3
|
class InternalEndpoint {
|
|
@@ -47,9 +46,7 @@ class InternalEndpoint {
|
|
|
47
46
|
ret = await ProjectInternal.readToString(path);
|
|
48
47
|
}
|
|
49
48
|
else {
|
|
50
|
-
|
|
51
|
-
const copied = ret.slice(0);
|
|
52
|
-
return comlink.transfer(copied, [copied.buffer]);
|
|
49
|
+
return await ProjectInternal.read(path);
|
|
53
50
|
}
|
|
54
51
|
return ret;
|
|
55
52
|
}
|
|
@@ -121,9 +118,7 @@ class InternalEndpoint {
|
|
|
121
118
|
}
|
|
122
119
|
async gzip(files) {
|
|
123
120
|
await this.wasmInit;
|
|
124
|
-
|
|
125
|
-
const copied = ret.slice(0);
|
|
126
|
-
return comlink.transfer(copied, [copied.buffer]);
|
|
121
|
+
return await ProjectInternal.gzip(files);
|
|
127
122
|
}
|
|
128
123
|
async sigMd5(content) {
|
|
129
124
|
await this.wasmInit;
|
package/esm/project/Project.js
CHANGED
|
@@ -86,7 +86,7 @@ export class Project {
|
|
|
86
86
|
async writeFile(path, content, encoding) {
|
|
87
87
|
await __classPrivateFieldGet(this, _Project_mount, "f");
|
|
88
88
|
if (content instanceof Uint8Array) {
|
|
89
|
-
return await this.remote.writeFile(path,
|
|
89
|
+
return await this.remote.writeFile(path, content, encoding);
|
|
90
90
|
}
|
|
91
91
|
return await this.remote.writeFile(path, content, encoding);
|
|
92
92
|
}
|
|
@@ -118,12 +118,11 @@ export class Project {
|
|
|
118
118
|
}
|
|
119
119
|
async gzip(files) {
|
|
120
120
|
await __classPrivateFieldGet(this, _Project_mount, "f");
|
|
121
|
-
|
|
122
|
-
return await this.remote.gzip(comlink.transfer(files, buffers));
|
|
121
|
+
return await this.remote.gzip(files);
|
|
123
122
|
}
|
|
124
123
|
async sigMd5(content) {
|
|
125
124
|
await __classPrivateFieldGet(this, _Project_mount, "f");
|
|
126
|
-
return await this.remote.sigMd5(
|
|
125
|
+
return await this.remote.sigMd5(content);
|
|
127
126
|
}
|
|
128
127
|
static fork(channel, eventSource) {
|
|
129
128
|
(eventSource || self).postMessage(Fork, {
|
package/esm/utoo/index.js
CHANGED
|
@@ -297,10 +297,10 @@ function passArray8ToWasm0(arg, malloc) {
|
|
|
297
297
|
export function wasm_thread_entry_point(ptr) {
|
|
298
298
|
wasm.wasm_thread_entry_point(ptr);
|
|
299
299
|
}
|
|
300
|
-
function
|
|
300
|
+
function __wbg_adapter_4(arg0, arg1) {
|
|
301
301
|
wasm.__wbindgen_export_6(arg0, arg1);
|
|
302
302
|
}
|
|
303
|
-
function
|
|
303
|
+
function __wbg_adapter_7(arg0, arg1, arg2) {
|
|
304
304
|
wasm.__wbindgen_export_7(arg0, arg1, addHeapObject(arg2));
|
|
305
305
|
}
|
|
306
306
|
let stack_pointer = 128;
|
|
@@ -310,7 +310,7 @@ function addBorrowedObject(obj) {
|
|
|
310
310
|
heap[--stack_pointer] = obj;
|
|
311
311
|
return stack_pointer;
|
|
312
312
|
}
|
|
313
|
-
function
|
|
313
|
+
function __wbg_adapter_12(arg0, arg1, arg2) {
|
|
314
314
|
try {
|
|
315
315
|
wasm.__wbindgen_export_8(arg0, arg1, addBorrowedObject(arg2));
|
|
316
316
|
}
|
|
@@ -1738,12 +1738,12 @@ function __wbg_get_imports() {
|
|
|
1738
1738
|
};
|
|
1739
1739
|
imports.wbg.__wbindgen_cast_0336f6e3114862a9 = function (arg0, arg1) {
|
|
1740
1740
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 8677, function: Function { arguments: [], shim_idx: 1993, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1741
|
-
const ret = makeMutClosure(arg0, arg1, 8677,
|
|
1741
|
+
const ret = makeMutClosure(arg0, arg1, 8677, __wbg_adapter_4);
|
|
1742
1742
|
return addHeapObject(ret);
|
|
1743
1743
|
};
|
|
1744
1744
|
imports.wbg.__wbindgen_cast_1fa25394258c7b5c = function (arg0, arg1) {
|
|
1745
1745
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 1992, function: Function { arguments: [], shim_idx: 1993, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1746
|
-
const ret = makeMutClosure(arg0, arg1, 1992,
|
|
1746
|
+
const ret = makeMutClosure(arg0, arg1, 1992, __wbg_adapter_4);
|
|
1747
1747
|
return addHeapObject(ret);
|
|
1748
1748
|
};
|
|
1749
1749
|
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function (arg0, arg1) {
|
|
@@ -1753,7 +1753,7 @@ function __wbg_get_imports() {
|
|
|
1753
1753
|
};
|
|
1754
1754
|
imports.wbg.__wbindgen_cast_267b46f6d4f9531c = function (arg0, arg1) {
|
|
1755
1755
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 8677, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 8678, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1756
|
-
const ret = makeMutClosure(arg0, arg1, 8677,
|
|
1756
|
+
const ret = makeMutClosure(arg0, arg1, 8677, __wbg_adapter_7);
|
|
1757
1757
|
return addHeapObject(ret);
|
|
1758
1758
|
};
|
|
1759
1759
|
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function (arg0) {
|
|
@@ -1763,7 +1763,7 @@ function __wbg_get_imports() {
|
|
|
1763
1763
|
};
|
|
1764
1764
|
imports.wbg.__wbindgen_cast_71a8823e0cdbb969 = function (arg0, arg1) {
|
|
1765
1765
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 8677, function: Function { arguments: [Externref], shim_idx: 8678, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1766
|
-
const ret = makeMutClosure(arg0, arg1, 8677,
|
|
1766
|
+
const ret = makeMutClosure(arg0, arg1, 8677, __wbg_adapter_7);
|
|
1767
1767
|
return addHeapObject(ret);
|
|
1768
1768
|
};
|
|
1769
1769
|
imports.wbg.__wbindgen_cast_76322aab70622876 = function (arg0, arg1) {
|
|
@@ -1787,7 +1787,7 @@ function __wbg_get_imports() {
|
|
|
1787
1787
|
};
|
|
1788
1788
|
imports.wbg.__wbindgen_cast_b7dc63dcdfc8d728 = function (arg0, arg1) {
|
|
1789
1789
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 8682, function: Function { arguments: [Ref(NamedExternref("MessageEvent"))], shim_idx: 8683, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1790
|
-
const ret = makeMutClosure(arg0, arg1, 8682,
|
|
1790
|
+
const ret = makeMutClosure(arg0, arg1, 8682, __wbg_adapter_12);
|
|
1791
1791
|
return addHeapObject(ret);
|
|
1792
1792
|
};
|
|
1793
1793
|
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function (arg0) {
|
package/esm/utoo/index_bg.wasm
CHANGED
|
Binary file
|