mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
// See: https://esbuild.github.io/plugins/#webassembly-plugin
|
|
|
|
const esbuild = require("esbuild");
|
|
const path = require("node:path");
|
|
const fs = require("node:fs");
|
|
const { argv } = require("node:process");
|
|
|
|
let wasmPlugin = {
|
|
name: "wasm",
|
|
|
|
setup(build) {
|
|
build.onResolve({ filter: /\.wasm$/ }, (args) => {
|
|
if (args.namespace === "wasm-stub") {
|
|
return {
|
|
path: args.path,
|
|
namespace: "wasm-binary",
|
|
};
|
|
}
|
|
|
|
if (args.resolveDir === "") {
|
|
return;
|
|
}
|
|
|
|
return {
|
|
path: path.isAbsolute(args.path)
|
|
? args.path
|
|
: path.join(args.resolveDir, args.path),
|
|
namespace: "wasm-stub",
|
|
};
|
|
});
|
|
|
|
build.onLoad({ filter: /.*/, namespace: "wasm-stub" }, async (args) => {
|
|
return {
|
|
contents: `import wasm from ${JSON.stringify(args.path)};
|
|
export default (imports) => {
|
|
const wasmModule = new WebAssembly.Module(wasm);
|
|
const wasmInstance = new WebAssembly.Instance(wasmModule, imports);
|
|
return wasmInstance.exports;
|
|
};`,
|
|
};
|
|
});
|
|
|
|
build.onLoad({ filter: /.*/, namespace: "wasm-binary" }, async (args) => {
|
|
return {
|
|
contents: await fs.promises.readFile(args.path),
|
|
loader: "binary",
|
|
};
|
|
});
|
|
},
|
|
};
|
|
|
|
esbuild
|
|
.build({
|
|
logLevel: "warning",
|
|
bundle: true,
|
|
minify: true,
|
|
alias: {
|
|
util: "./app/assets/javascripts/node_modules/@zxing/text-encoding",
|
|
},
|
|
define: {
|
|
process: `{ "env": {} }`,
|
|
},
|
|
external: ["fs", "path"],
|
|
entryPoints: ["./app/assets/javascripts/theme-transpiler/transpiler.js"],
|
|
outfile: argv[2],
|
|
plugins: [wasmPlugin],
|
|
})
|
|
.then(() => {});
|