discourse/app/assets/javascripts/theme-transpiler/build.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.7 KiB
JavaScript
Raw Normal View History

// 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(() => {});