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

61 lines
1.7 KiB
JavaScript

/* eslint-env node */
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const webpack = require("webpack");
const path = require("path");
module.exports = (env, argv) => {
let mode = "production";
if (argv && argv.mode) {
mode = argv.mode;
}
const commitHash = require("child_process")
.execSync("git rev-parse --short HEAD")
.toString();
const commitDate = require("child_process")
.execSync("git log -1 --date=short --pretty=format:%cd")
.toString();
const channel = process.env.CFG_RELEASE_CHANNEL || "nightly".toLowerCase();
console.log(`Building ${mode}...`);
return {
entry: path.resolve(__dirname, "www/index.js"),
output: {
publicPath: "",
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: mode,
experiments: {
syncWebAssembly: true,
},
plugins: [
new CleanWebpackPlugin(),
new webpack.DefinePlugin({
__COMMIT_HASH__: JSON.stringify(commitHash),
__COMMIT_DATE__: JSON.stringify(commitDate),
__CHANNEL__: JSON.stringify(channel),
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, "www/index.html"),
to: "index.html",
},
{
from: "LICENSE**",
},
{
from: "README.md",
},
],
}),
],
};
};