2021-11-03 16:57:13 +00:00
|
|
|
const webpack = require("webpack");
|
|
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
|
|
const nodeExternals = require("webpack-node-externals");
|
|
|
|
const CopyPlugin = require("copy-webpack-plugin");
|
|
|
|
const RunNodeWebpackPlugin = require("run-node-webpack-plugin");
|
|
|
|
const { merge } = require("lodash");
|
2020-10-03 16:03:29 +00:00
|
|
|
|
|
|
|
const banner = `
|
2020-10-24 17:12:13 +00:00
|
|
|
hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file]
|
2020-10-03 16:03:29 +00:00
|
|
|
Source code: https://github.com/LemmyNet/lemmy-ui
|
|
|
|
Created by dessalines
|
|
|
|
@license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
|
|
|
|
`;
|
2020-09-07 03:41:46 +00:00
|
|
|
|
2020-10-25 19:46:08 +00:00
|
|
|
const base = {
|
|
|
|
output: {
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "js/server.js",
|
|
|
|
publicPath: "/",
|
|
|
|
hashFunction: "xxhash64",
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
resolve: {
|
2021-11-03 16:57:13 +00:00
|
|
|
extensions: [".js", ".jsx", ".ts", ".tsx"],
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
performance: {
|
|
|
|
hints: false,
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.(scss|css)$/i,
|
2021-11-03 16:57:13 +00:00
|
|
|
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
|
|
|
|
exclude: /node_modules/, // ignore node_modules
|
2021-11-03 16:57:13 +00:00
|
|
|
loader: "babel-loader",
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
// Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
|
|
|
|
{
|
|
|
|
test: /\.m?js/,
|
|
|
|
resolve: {
|
|
|
|
fullySpecified: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new MiniCssExtractPlugin({
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "styles/styles.css",
|
2020-10-25 19:46:08 +00:00
|
|
|
}),
|
|
|
|
new CopyPlugin({
|
2021-11-03 16:57:13 +00:00
|
|
|
patterns: [{ from: "./src/assets", to: "./assets" }],
|
2020-10-25 19:46:08 +00:00
|
|
|
}),
|
|
|
|
new webpack.BannerPlugin({
|
|
|
|
banner,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
};
|
2020-10-25 10:58:47 +00:00
|
|
|
|
2020-10-27 00:54:05 +00:00
|
|
|
const createServerConfig = (_env, mode) => {
|
2020-10-25 19:46:08 +00:00
|
|
|
const config = merge({}, base, {
|
|
|
|
mode,
|
2021-11-03 16:57:13 +00:00
|
|
|
entry: "./src/server/index.tsx",
|
2020-09-07 03:41:46 +00:00
|
|
|
output: {
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "js/server.js",
|
2020-09-07 03:41:46 +00:00
|
|
|
},
|
2021-11-03 16:57:13 +00:00
|
|
|
target: "node",
|
|
|
|
externals: [nodeExternals(), "inferno-helmet"],
|
2020-10-25 19:46:08 +00:00
|
|
|
});
|
|
|
|
|
2021-11-03 16:57:13 +00:00
|
|
|
if (mode === "development") {
|
2020-10-25 19:46:08 +00:00
|
|
|
config.cache = {
|
2021-11-03 16:57:13 +00:00
|
|
|
type: "filesystem",
|
|
|
|
name: "server",
|
2020-10-25 19:46:08 +00:00
|
|
|
};
|
2020-10-25 20:14:00 +00:00
|
|
|
|
|
|
|
config.plugins.push(
|
|
|
|
new RunNodeWebpackPlugin({
|
|
|
|
runOnlyInWatchMode: true,
|
|
|
|
})
|
|
|
|
);
|
2020-10-25 19:46:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
};
|
2020-10-27 00:54:05 +00:00
|
|
|
const createClientConfig = (_env, mode) => {
|
2020-10-25 19:46:08 +00:00
|
|
|
const config = merge({}, base, {
|
|
|
|
mode,
|
2021-11-03 16:57:13 +00:00
|
|
|
entry: "./src/client/index.tsx",
|
2020-10-25 19:46:08 +00:00
|
|
|
output: {
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "js/client.js",
|
2020-10-25 10:58:47 +00:00
|
|
|
},
|
2020-10-25 19:46:08 +00:00
|
|
|
});
|
2020-09-07 03:41:46 +00:00
|
|
|
|
2021-11-03 16:57:13 +00:00
|
|
|
if (mode === "development") {
|
2020-10-25 19:46:08 +00:00
|
|
|
config.cache = {
|
2021-11-03 16:57:13 +00:00
|
|
|
type: "filesystem",
|
|
|
|
name: "client",
|
2020-10-25 19:46:08 +00:00
|
|
|
};
|
2020-09-07 03:41:46 +00:00
|
|
|
}
|
2020-10-25 19:46:08 +00:00
|
|
|
|
|
|
|
return config;
|
2020-09-07 03:41:46 +00:00
|
|
|
};
|
2020-10-25 19:46:08 +00:00
|
|
|
|
|
|
|
module.exports = (env, properties) => [
|
2021-11-03 16:57:13 +00:00
|
|
|
createServerConfig(env, properties.mode || "development"),
|
|
|
|
createClientConfig(env, properties.mode || "development"),
|
2020-10-25 19:46:08 +00:00
|
|
|
];
|