2020-07-29 05:00:23 +02:00
|
|
|
/// <reference types="webpack-dev-server" />
|
|
|
|
|
2020-10-07 12:24:12 +02:00
|
|
|
import path from "path";
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2021-03-17 23:36:20 +01:00
|
|
|
import CssMinimizerPlugin from "css-minimizer-webpack-plugin";
|
2020-07-15 01:29:15 +02:00
|
|
|
import HtmlWebpackPlugin from "html-webpack-plugin";
|
|
|
|
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
2023-03-03 22:38:01 +01:00
|
|
|
import {DefinePlugin} from "webpack";
|
2021-09-20 23:15:34 +02:00
|
|
|
import type webpack from "webpack";
|
2021-03-17 03:11:41 +01:00
|
|
|
import BundleTracker from "webpack-bundle-tracker";
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2023-02-24 02:20:53 +01:00
|
|
|
import DebugRequirePlugin from "./debug-require-webpack-plugin";
|
|
|
|
import assets from "./webpack.assets.json";
|
|
|
|
import dev_assets from "./webpack.dev-assets.json";
|
2017-05-22 22:49:20 +02:00
|
|
|
|
2023-03-03 22:38:01 +01:00
|
|
|
export default (
|
|
|
|
env: {minimize?: boolean; ZULIP_VERSION?: string} = {},
|
|
|
|
argv: {mode?: string},
|
|
|
|
): webpack.Configuration[] => {
|
2020-09-26 06:32:14 +02:00
|
|
|
const production: boolean = argv.mode === "production";
|
|
|
|
|
2021-03-18 01:32:29 +01:00
|
|
|
const baseConfig: webpack.Configuration = {
|
2018-04-17 21:59:17 +02:00
|
|
|
mode: production ? "production" : "development",
|
2020-08-29 04:36:53 +02:00
|
|
|
context: __dirname,
|
2021-03-18 01:32:29 +01:00
|
|
|
cache: {
|
|
|
|
type: "filesystem",
|
|
|
|
buildDependencies: {
|
|
|
|
config: [__filename],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const frontendConfig: webpack.Configuration = {
|
|
|
|
...baseConfig,
|
|
|
|
name: "frontend",
|
2020-09-26 04:44:32 +02:00
|
|
|
entry: production
|
|
|
|
? assets
|
|
|
|
: Object.fromEntries(
|
2021-04-15 22:57:23 +02:00
|
|
|
Object.entries({...assets, ...dev_assets}).map(([name, paths]) => [
|
2020-09-26 04:44:32 +02:00
|
|
|
name,
|
2023-02-24 02:20:53 +01:00
|
|
|
[...paths, "./src/debug"],
|
2020-09-26 04:44:32 +02:00
|
|
|
]),
|
|
|
|
),
|
2017-07-28 22:33:40 +02:00
|
|
|
module: {
|
|
|
|
rules: [
|
2021-03-01 23:33:52 +01:00
|
|
|
{
|
2023-02-24 02:20:53 +01:00
|
|
|
test: require.resolve("./src/zulip_test"),
|
2021-03-01 23:33:52 +01:00
|
|
|
loader: "expose-loader",
|
|
|
|
options: {exposes: "zulip_test"},
|
|
|
|
},
|
2020-07-29 03:03:53 +02:00
|
|
|
{
|
2023-02-24 02:20:53 +01:00
|
|
|
test: require.resolve("./debug-require"),
|
2020-07-29 03:03:53 +02:00
|
|
|
loader: "expose-loader",
|
|
|
|
options: {exposes: "require"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: require.resolve("jquery"),
|
|
|
|
loader: "expose-loader",
|
|
|
|
options: {exposes: ["$", "jQuery"]},
|
|
|
|
},
|
2019-07-18 06:47:06 +02:00
|
|
|
// Generate webfont
|
|
|
|
{
|
|
|
|
test: /\.font\.js$/,
|
|
|
|
use: [
|
|
|
|
MiniCssExtractPlugin.loader,
|
2020-04-04 01:47:18 +02:00
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
loader: "css-loader",
|
2020-04-04 01:47:18 +02:00
|
|
|
options: {
|
2020-07-16 23:29:01 +02:00
|
|
|
url: false, // webfonts-loader generates public relative URLs
|
2020-04-04 01:47:18 +02:00
|
|
|
},
|
|
|
|
},
|
2019-07-18 06:47:06 +02:00
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
loader: "webfonts-loader",
|
2019-07-18 06:47:06 +02:00
|
|
|
options: {
|
2020-07-15 00:34:28 +02:00
|
|
|
fileName: production
|
|
|
|
? "files/[fontname].[chunkhash].[ext]"
|
|
|
|
: "files/[fontname].[ext]",
|
2020-07-15 01:29:15 +02:00
|
|
|
publicPath: "",
|
2019-07-18 06:47:06 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2019-07-10 00:05:46 +02:00
|
|
|
// Transpile .js and .ts files with Babel
|
2017-07-28 22:33:40 +02:00
|
|
|
{
|
2019-07-10 00:05:46 +02:00
|
|
|
test: /\.(js|ts)$/,
|
2019-10-04 23:08:11 +02:00
|
|
|
include: [
|
2023-02-24 02:20:53 +01:00
|
|
|
path.resolve(__dirname, "shared/src"),
|
|
|
|
path.resolve(__dirname, "src"),
|
2019-10-04 23:08:11 +02:00
|
|
|
],
|
2021-03-18 01:32:29 +01:00
|
|
|
loader: "babel-loader",
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
2018-04-25 22:09:48 +02:00
|
|
|
// regular css files
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
2023-02-24 02:20:53 +01:00
|
|
|
exclude: path.resolve(__dirname, "styles"),
|
2019-06-06 11:01:44 +02:00
|
|
|
use: [
|
2020-12-09 23:43:09 +01:00
|
|
|
MiniCssExtractPlugin.loader,
|
2018-04-25 22:09:48 +02:00
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
loader: "css-loader",
|
2018-04-25 22:09:48 +02:00
|
|
|
options: {
|
2019-03-24 11:54:17 +01:00
|
|
|
sourceMap: true,
|
2018-05-28 08:09:49 +02:00
|
|
|
},
|
2018-04-25 22:09:48 +02:00
|
|
|
},
|
2019-06-06 11:01:44 +02:00
|
|
|
],
|
2018-04-25 22:09:48 +02:00
|
|
|
},
|
2020-09-15 22:23:01 +02:00
|
|
|
// PostCSS loader
|
2018-04-25 22:09:48 +02:00
|
|
|
{
|
2020-09-15 22:23:01 +02:00
|
|
|
test: /\.css$/,
|
2023-02-24 02:20:53 +01:00
|
|
|
include: path.resolve(__dirname, "styles"),
|
2019-06-06 11:01:44 +02:00
|
|
|
use: [
|
2020-12-09 23:43:09 +01:00
|
|
|
MiniCssExtractPlugin.loader,
|
2018-04-25 22:09:48 +02:00
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
loader: "css-loader",
|
2018-04-25 22:09:48 +02:00
|
|
|
options: {
|
2019-08-27 01:23:48 +02:00
|
|
|
importLoaders: 1,
|
2019-03-24 11:54:17 +01:00
|
|
|
sourceMap: true,
|
|
|
|
},
|
2018-04-25 22:09:48 +02:00
|
|
|
},
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
loader: "postcss-loader",
|
2018-04-25 22:09:48 +02:00
|
|
|
options: {
|
2019-03-24 11:54:17 +01:00
|
|
|
sourceMap: true,
|
|
|
|
},
|
|
|
|
},
|
2019-06-06 11:01:44 +02:00
|
|
|
],
|
2018-04-25 22:09:48 +02:00
|
|
|
},
|
2019-06-25 11:39:03 +02:00
|
|
|
{
|
2019-07-12 00:52:56 +02:00
|
|
|
test: /\.hbs$/,
|
2021-03-18 01:32:29 +01:00
|
|
|
loader: "handlebars-loader",
|
|
|
|
options: {
|
|
|
|
ignoreHelpers: true,
|
|
|
|
// Tell webpack not to explicitly require these.
|
|
|
|
knownHelpers: [
|
|
|
|
"if",
|
|
|
|
"unless",
|
|
|
|
"each",
|
|
|
|
"with",
|
2023-02-22 23:03:47 +01:00
|
|
|
// The ones below are defined in web/src/templates.js
|
2021-03-18 01:32:29 +01:00
|
|
|
"plural",
|
|
|
|
"eq",
|
|
|
|
"and",
|
|
|
|
"or",
|
|
|
|
"not",
|
|
|
|
"t",
|
|
|
|
"tr",
|
|
|
|
"rendered_markdown",
|
2023-02-08 21:40:48 +01:00
|
|
|
"tooltip_hotkey_hints",
|
2021-03-18 01:32:29 +01:00
|
|
|
],
|
|
|
|
preventIndent: true,
|
2023-02-07 21:59:06 +01:00
|
|
|
// This replaces relative image resources with
|
|
|
|
// a computed require() path to them, so their
|
|
|
|
// webpack-hashed URLs are used.
|
2023-02-22 23:03:47 +01:00
|
|
|
inlineRequires: /^(\.\.\/)+(images|static)\//,
|
2021-03-18 01:32:29 +01:00
|
|
|
},
|
2019-06-25 11:39:03 +02:00
|
|
|
},
|
2018-04-25 22:09:48 +02:00
|
|
|
// load fonts and files
|
|
|
|
{
|
2020-08-13 00:27:39 +02:00
|
|
|
test: /\.(eot|jpg|svg|ttf|otf|png|woff2?)$/,
|
2021-03-18 01:32:29 +01:00
|
|
|
type: "asset/resource",
|
2019-03-24 11:54:17 +01:00
|
|
|
},
|
2017-07-28 22:33:40 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
output: {
|
2023-02-24 02:20:53 +01:00
|
|
|
path: path.resolve(__dirname, "../static/webpack-bundles"),
|
2021-03-18 01:32:29 +01:00
|
|
|
publicPath: "",
|
2020-07-15 01:29:15 +02:00
|
|
|
filename: production ? "[name].[contenthash].js" : "[name].js",
|
2021-03-18 01:32:29 +01:00
|
|
|
assetModuleFilename: production
|
|
|
|
? "files/[name].[hash][ext][query]"
|
|
|
|
: // Avoid directory traversal bug that upstream won't fix
|
|
|
|
// (https://github.com/webpack/webpack/issues/11937)
|
|
|
|
(pathData) => "files" + path.join("/", pathData.filename!),
|
2020-07-15 01:29:15 +02:00
|
|
|
chunkFilename: production ? "[contenthash].js" : "[id].js",
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
|
|
|
resolve: {
|
2021-03-18 01:32:29 +01:00
|
|
|
...baseConfig.resolve,
|
2019-06-21 02:01:59 +02:00
|
|
|
extensions: [".ts", ".js"],
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
2020-09-26 06:09:38 +02:00
|
|
|
// We prefer cheap-module-source-map over any eval-* options
|
|
|
|
// because stacktrace-gps doesn't currently support extracting
|
|
|
|
// the source snippets with the eval-* options.
|
2020-07-15 01:29:15 +02:00
|
|
|
devtool: production ? "source-map" : "cheap-module-source-map",
|
2019-08-30 19:16:28 +02:00
|
|
|
optimization: {
|
2021-06-10 22:13:56 +02:00
|
|
|
minimize: env.minimize ?? production,
|
2019-08-30 19:16:28 +02:00
|
|
|
minimizer: [
|
2021-03-17 23:36:20 +01:00
|
|
|
new CssMinimizerPlugin({
|
2021-03-18 01:32:29 +01:00
|
|
|
minify: CssMinimizerPlugin.cleanCssMinify,
|
2019-08-30 19:16:28 +02:00
|
|
|
}),
|
2021-03-18 01:32:29 +01:00
|
|
|
"...",
|
2019-08-30 19:16:28 +02:00
|
|
|
],
|
2019-10-22 02:14:28 +02:00
|
|
|
splitChunks: {
|
|
|
|
chunks: "all",
|
|
|
|
// webpack/examples/many-pages suggests 20 requests for HTTP/2
|
|
|
|
maxAsyncRequests: 20,
|
|
|
|
maxInitialRequests: 20,
|
|
|
|
},
|
2019-08-30 19:16:28 +02:00
|
|
|
},
|
2019-10-22 01:26:30 +02:00
|
|
|
plugins: [
|
2023-03-03 22:38:01 +01:00
|
|
|
new DefinePlugin({
|
|
|
|
ZULIP_VERSION: JSON.stringify(env.ZULIP_VERSION || "development"),
|
|
|
|
}),
|
2020-02-25 04:34:09 +01:00
|
|
|
new DebugRequirePlugin(),
|
2019-10-22 01:26:30 +02:00
|
|
|
new BundleTracker({
|
|
|
|
filename: production
|
2023-02-24 02:20:53 +01:00
|
|
|
? "../webpack-stats-production.json"
|
|
|
|
: "../var/webpack-stats-dev.json",
|
2019-10-22 01:26:30 +02:00
|
|
|
}),
|
|
|
|
// Extract CSS from files
|
|
|
|
new MiniCssExtractPlugin({
|
2019-10-22 02:02:14 +02:00
|
|
|
filename: production ? "[name].[contenthash].css" : "[name].css",
|
2019-10-22 02:14:28 +02:00
|
|
|
chunkFilename: production ? "[contenthash].css" : "[id].css",
|
2019-10-22 01:26:30 +02:00
|
|
|
}),
|
2019-10-22 02:02:14 +02:00
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
filename: "5xx.html",
|
2023-02-24 02:20:53 +01:00
|
|
|
template: "html/5xx.html",
|
2019-10-22 02:02:14 +02:00
|
|
|
chunks: ["error-styles"],
|
|
|
|
}),
|
2019-10-22 01:26:30 +02:00
|
|
|
],
|
2020-09-26 04:45:57 +02:00
|
|
|
devServer: {
|
2023-03-21 20:06:35 +01:00
|
|
|
client: {
|
|
|
|
overlay: {
|
|
|
|
runtimeErrors: false,
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 21:28:29 +02:00
|
|
|
devMiddleware: {
|
|
|
|
publicPath: "/webpack/",
|
2022-08-23 17:14:40 +02:00
|
|
|
stats: {
|
|
|
|
// We want just errors and a clear, brief notice
|
|
|
|
// whenever webpack compilation has finished.
|
|
|
|
preset: "minimal",
|
|
|
|
assets: false,
|
|
|
|
modules: false,
|
|
|
|
},
|
2021-09-10 21:28:29 +02:00
|
|
|
},
|
2020-04-04 01:47:18 +02:00
|
|
|
headers: {
|
|
|
|
"Access-Control-Allow-Origin": "*",
|
|
|
|
},
|
2021-09-10 21:28:29 +02:00
|
|
|
},
|
|
|
|
infrastructureLogging: {
|
|
|
|
level: "warn",
|
|
|
|
},
|
|
|
|
watchOptions: {
|
|
|
|
ignored: [
|
|
|
|
"**/node_modules/**",
|
|
|
|
// Prevent Emacs file locks from crashing webpack-dev-server
|
|
|
|
// https://github.com/webpack/webpack-dev-server/issues/2821
|
|
|
|
"**/.#*",
|
|
|
|
],
|
2021-03-11 22:31:30 +01:00
|
|
|
},
|
2020-09-26 04:45:57 +02:00
|
|
|
};
|
2019-06-29 10:13:08 +02:00
|
|
|
|
|
|
|
const serverConfig: webpack.Configuration = {
|
2021-03-18 01:32:29 +01:00
|
|
|
...baseConfig,
|
2020-09-26 04:49:49 +02:00
|
|
|
name: "server",
|
2019-06-29 10:13:08 +02:00
|
|
|
target: "node",
|
|
|
|
entry: {
|
|
|
|
"katex-cli": "shebang-loader!katex/cli",
|
|
|
|
},
|
|
|
|
output: {
|
2023-02-24 02:20:53 +01:00
|
|
|
path: path.resolve(__dirname, "../static/webpack-bundles"),
|
2019-06-29 10:13:08 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-03-18 01:32:29 +01:00
|
|
|
return [frontendConfig, serverConfig];
|
2015-10-26 17:11:44 +01:00
|
|
|
};
|