Compare commits

...

2 Commits

Author SHA1 Message Date
3cdb14fc96 [wasm] chore: bump version to alpha.6 2024-09-14 20:09:51 +01:00
59fafa9e2a [wasm] build: fix detection for environment 2024-09-14 20:09:38 +01:00
3 changed files with 10 additions and 12 deletions

View File

@ -92,9 +92,6 @@ async function main() {
// Ask rollup to build bundles.
await run(['pnpm', 'build:bundle']);
await run(['pnpm', 'exec', 'prettier', '--ignore-path', '', '-w', 'dist/loader.d.ts']);
await replaceFileByRegex(path.join(wasmDistDir, 'loader.mjs'), [
['fetch(filepath)', 'fetch(new URL(filepath, import.meta.url))'],
]);
}
main()

View File

@ -1,6 +1,6 @@
{
"name": "@unlock-music/crypto",
"version": "0.0.0-alpha.5",
"version": "0.0.0-alpha.6",
"description": "Project Unlock Music: 加解密支持库",
"scripts": {
"build": "node build.js",

View File

@ -8,14 +8,15 @@ function loader() {
initSync({ module: umWasm() });
return Promise.resolve(true);
} else {
/** @type {Promise<Buffer>|undefined} */
let wasm = undefined;
if (typeof document === 'undefined') {
// node
wasm = import('node:f' + 's/promises').then((fs) =>
fs.readFile(new URL('../pkg/um_wasm_bg.wasm', import.meta.url)),
);
}
const url = new URL('um_wasm_bg.wasm', import.meta.url);
const wasm =
url.protocol === 'file:'
? import('node:f' + 's/promises')
.then((fs) => fs.readFile(url))
.catch((err) => {
console.log('read wasm failed', err);
})
: undefined;
return __wbg_init({ module_or_path: wasm }).then(() => true);
}
}