mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 11:52:56 +08:00
588a79c80c
Before this commit, we had a yarn package set up in the root directory and also in `app/assets/javascripts`. That meant two `yarn install` calls and two `node_modules` directories. This commit merges them both into the root location, and updates references to node_modules. A previous attempt can be found at https://github.com/discourse/discourse/pull/21172. This commit re-uses that script to merge the `yarn.lock` files. Co-authored-by: Jarek Radosz <jradosz@gmail.com>
64 lines
1.4 KiB
JavaScript
64 lines
1.4 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: `export { default } from ${JSON.stringify(args.path)};`,
|
|
};
|
|
});
|
|
|
|
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: "./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(() => {});
|