ruffle/web/packages/selfhosted/webpack.config.js

75 lines
2.1 KiB
JavaScript
Raw Normal View History

/* eslint-env node */
import url from "url";
import json5 from "json5";
import CopyPlugin from "copy-webpack-plugin";
import TerserPlugin from "terser-webpack-plugin";
function transformPackage(content) {
const pkg = json5.parse(content);
const packageVersion = process.env.npm_package_version;
const versionChannel = process.env.CFG_RELEASE_CHANNEL || "nightly";
const buildDate = new Date()
.toISOString()
.substring(0, 10)
.replace(/-/g, ".");
// The npm registry requires the version to monotonically increase,
// so append the build date onto the end of the package version.
pkg.version =
versionChannel !== "stable"
? `${packageVersion}-${versionChannel}.${buildDate}`
: packageVersion;
return JSON.stringify(pkg);
}
export default function (_env, _argv) {
const mode = process.env.NODE_ENV || "production";
console.log(`Building ${mode}...`);
return {
mode,
entry: "./js/ruffle.js",
output: {
path: url.fileURLToPath(new URL("dist", import.meta.url)),
filename: "ruffle.js",
publicPath: "",
chunkFilename: "core.ruffle.[contenthash].js",
clean: true,
},
performance: {
assetFilter: (assetFilename) =>
!/\.(map|wasm)$/i.test(assetFilename),
},
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
output: {
ascii_only: true,
},
},
}),
],
},
devtool: "source-map",
plugins: [
new CopyPlugin({
patterns: [
{
from: "npm-package.json5",
to: "package.json",
transform: transformPackage,
},
{ from: "LICENSE*" },
{ from: "README.md" },
],
}),
],
};
}