2020-07-16 22:40:18 +02:00
|
|
|
import {basename, resolve} from "path";
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
import CleanCss from "clean-css";
|
|
|
|
import HtmlWebpackPlugin from "html-webpack-plugin";
|
|
|
|
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
|
|
|
import OptimizeCssAssetsPlugin from "optimize-css-assets-webpack-plugin";
|
|
|
|
import TerserPlugin from "terser-webpack-plugin";
|
2019-10-30 20:13:53 +01:00
|
|
|
// The devServer member of webpack.Configuration is managed by the
|
|
|
|
// webpack-dev-server package. We are only importing the type here.
|
2020-07-24 06:02:07 +02:00
|
|
|
import webpack from "webpack";
|
2020-07-15 01:29:15 +02:00
|
|
|
import _webpackDevServer from "webpack-dev-server";
|
2020-07-24 06:02:07 +02:00
|
|
|
import BundleTracker from "webpack4-bundle-tracker";
|
|
|
|
|
|
|
|
import DebugRequirePlugin from "./debug-require-webpack-plugin";
|
|
|
|
import {cacheLoader, getExposeLoaders} from "./webpack-helpers";
|
2020-07-15 01:29:15 +02:00
|
|
|
import assets from "./webpack.assets.json";
|
2017-05-22 22:49:20 +02:00
|
|
|
|
2019-06-29 10:13:08 +02:00
|
|
|
export default (env?: string): webpack.Configuration[] => {
|
2017-07-28 23:13:58 +02:00
|
|
|
const production: boolean = env === "production";
|
2019-03-24 11:54:17 +01:00
|
|
|
const config: webpack.Configuration = {
|
2019-08-16 05:30:53 +02:00
|
|
|
name: "frontend",
|
2018-04-17 21:59:17 +02:00
|
|
|
mode: production ? "production" : "development",
|
2017-07-28 23:13:58 +02:00
|
|
|
context: resolve(__dirname, "../"),
|
2017-07-28 22:33:40 +02:00
|
|
|
entry: assets,
|
|
|
|
module: {
|
|
|
|
rules: [
|
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: [
|
2020-07-15 01:29:15 +02:00
|
|
|
resolve(__dirname, "../static/shared/js"),
|
|
|
|
resolve(__dirname, "../static/js"),
|
2019-10-04 23:08:11 +02:00
|
|
|
],
|
2020-07-15 01:29:15 +02:00
|
|
|
use: [cacheLoader, "babel-loader"],
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
|
|
|
// Uses script-loader on minified files so we don't change global variables in them.
|
|
|
|
// Also has the effect of making processing these files fast
|
2017-08-06 03:53:44 +02:00
|
|
|
// Currently the source maps don't work with these so use unminified files
|
|
|
|
// if debugging is required.
|
2017-07-28 22:33:40 +02:00
|
|
|
{
|
2018-05-28 08:09:49 +02:00
|
|
|
// We dont want to match admin.js
|
|
|
|
test: /(\.min|min\.|zxcvbn)\.js/,
|
2020-07-15 01:29:15 +02:00
|
|
|
use: [cacheLoader, "script-loader"],
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
2018-04-25 22:09:48 +02:00
|
|
|
// regular css files
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
2019-06-06 11:01:44 +02:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: MiniCssExtractPlugin.loader,
|
|
|
|
options: {
|
|
|
|
hmr: !production,
|
|
|
|
},
|
|
|
|
},
|
2019-06-04 21:11:31 +02:00
|
|
|
cacheLoader,
|
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
|
|
|
},
|
2019-08-27 01:23:48 +02:00
|
|
|
// scss loader
|
2018-04-25 22:09:48 +02:00
|
|
|
{
|
2019-08-27 01:23:48 +02:00
|
|
|
test: /\.scss$/,
|
2020-07-15 01:29:15 +02:00
|
|
|
include: resolve(__dirname, "../static/styles"),
|
2019-06-06 11:01:44 +02:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: MiniCssExtractPlugin.loader,
|
|
|
|
options: {
|
|
|
|
hmr: !production,
|
|
|
|
},
|
|
|
|
},
|
2019-06-04 21:11:31 +02:00
|
|
|
cacheLoader,
|
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$/,
|
2020-04-30 21:31:23 +02:00
|
|
|
use: [
|
|
|
|
cacheLoader,
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
loader: "handlebars-loader",
|
2020-04-30 21:31:23 +02:00
|
|
|
options: {
|
|
|
|
// Tell webpack not to explicitly require these.
|
|
|
|
knownHelpers: [
|
2020-07-15 00:34:28 +02:00
|
|
|
"if",
|
|
|
|
"unless",
|
|
|
|
"each",
|
|
|
|
"with",
|
2020-04-30 21:31:23 +02:00
|
|
|
// The ones below are defined in static/js/templates.js
|
2020-07-15 00:34:28 +02:00
|
|
|
"plural",
|
|
|
|
"eq",
|
|
|
|
"and",
|
|
|
|
"or",
|
|
|
|
"not",
|
|
|
|
"t",
|
|
|
|
"tr",
|
|
|
|
"rendered_markdown",
|
2020-04-30 21:31:23 +02:00
|
|
|
],
|
|
|
|
preventIndent: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2019-06-25 11:39:03 +02:00
|
|
|
},
|
2018-04-25 22:09:48 +02:00
|
|
|
// load fonts and files
|
|
|
|
{
|
2019-07-03 02:22:28 +02:00
|
|
|
test: /\.(woff(2)?|ttf|eot|svg|otf|png)$/,
|
2020-07-15 00:34:28 +02:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: "file-loader",
|
|
|
|
options: {
|
|
|
|
name: production ? "[name].[hash].[ext]" : "[path][name].[ext]",
|
|
|
|
outputPath: "files/",
|
|
|
|
},
|
2019-03-24 11:54:17 +01:00
|
|
|
},
|
2020-07-15 00:34:28 +02:00
|
|
|
],
|
2019-03-24 11:54:17 +01:00
|
|
|
},
|
2017-07-28 22:33:40 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
output: {
|
2020-07-15 01:29:15 +02:00
|
|
|
path: resolve(__dirname, "../static/webpack-bundles"),
|
|
|
|
filename: production ? "[name].[contenthash].js" : "[name].js",
|
|
|
|
chunkFilename: production ? "[contenthash].js" : "[id].js",
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
|
|
|
resolve: {
|
2019-06-21 02:01:59 +02:00
|
|
|
extensions: [".ts", ".js"],
|
2017-07-28 22:33:40 +02:00
|
|
|
},
|
2018-05-22 01:50:25 +02:00
|
|
|
// We prefer cheap-module-source-map over any eval-** options
|
|
|
|
// because the eval-options currently don't support being
|
|
|
|
// source mapped in error stack traces
|
|
|
|
// We prefer it over eval since eval has trouble setting
|
|
|
|
// breakpoints in chrome.
|
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: {
|
|
|
|
minimizer: [
|
|
|
|
// Based on a comment in NMFR/optimize-css-assets-webpack-plugin#10.
|
|
|
|
// Can be simplified when NMFR/optimize-css-assets-webpack-plugin#87
|
|
|
|
// is fixed.
|
|
|
|
new OptimizeCssAssetsPlugin({
|
|
|
|
cssProcessor: {
|
2019-11-04 23:37:12 +01:00
|
|
|
async process(css, options: any) {
|
2019-08-30 19:16:28 +02:00
|
|
|
const filename = basename(options.to);
|
|
|
|
const result = await new CleanCss(options).minify({
|
|
|
|
[filename]: {
|
|
|
|
styles: css,
|
|
|
|
sourceMap: options.map.prev,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
for (const warning of result.warnings) {
|
|
|
|
console.warn(warning);
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
css: result.styles + `\n/*# sourceMappingURL=${filename}.map */`,
|
|
|
|
map: result.sourceMap,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cssProcessorOptions: {
|
|
|
|
map: {},
|
|
|
|
returnPromise: true,
|
|
|
|
sourceMap: true,
|
|
|
|
sourceMapInlineSources: true,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
new TerserPlugin({
|
|
|
|
cache: true,
|
|
|
|
parallel: true,
|
|
|
|
sourceMap: true,
|
|
|
|
}),
|
|
|
|
],
|
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: [
|
2020-02-25 04:34:09 +01:00
|
|
|
new DebugRequirePlugin(),
|
2019-10-22 01:26:30 +02:00
|
|
|
new BundleTracker({
|
|
|
|
filename: production
|
2020-07-15 01:29:15 +02:00
|
|
|
? "webpack-stats-production.json"
|
|
|
|
: "var/webpack-stats-dev.json",
|
2019-10-22 01:26:30 +02:00
|
|
|
}),
|
2020-07-15 00:34:28 +02:00
|
|
|
...(production
|
2019-10-22 01:26:30 +02:00
|
|
|
? []
|
|
|
|
: [
|
2020-07-15 00:34:28 +02:00
|
|
|
// Better logging from console for hot reload
|
|
|
|
new webpack.NamedModulesPlugin(),
|
|
|
|
// script-loader should load sourceURL in dev
|
|
|
|
new webpack.LoaderOptionsPlugin({debug: true}),
|
|
|
|
]),
|
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",
|
|
|
|
template: "static/html/5xx.html",
|
|
|
|
chunks: ["error-styles"],
|
|
|
|
}),
|
2019-10-22 01:26:30 +02:00
|
|
|
],
|
2017-07-28 22:33:40 +02:00
|
|
|
};
|
2018-05-28 08:09:49 +02:00
|
|
|
|
|
|
|
// Expose Global variables for third party libraries to webpack modules
|
2020-07-25 02:02:35 +02:00
|
|
|
// Use the unminified version of jquery so that
|
2018-05-28 08:09:49 +02:00
|
|
|
// Good error messages show up in production and development in the source maps
|
2019-11-02 00:06:25 +01:00
|
|
|
const exposeOptions = [
|
2020-07-16 22:40:18 +02:00
|
|
|
{path: "./debug-require.js", name: "require"},
|
|
|
|
{path: "jquery/dist/jquery.js", name: ["$", "jQuery"]},
|
2018-05-28 08:09:49 +02:00
|
|
|
];
|
2020-07-26 22:19:12 +02:00
|
|
|
config.module!.rules.unshift(...getExposeLoaders(exposeOptions));
|
2018-05-28 08:09:49 +02:00
|
|
|
|
2019-10-22 01:26:30 +02:00
|
|
|
if (!production) {
|
2017-07-28 22:53:37 +02:00
|
|
|
// Out JS debugging tools
|
2020-05-27 01:02:28 +02:00
|
|
|
for (const paths of Object.values(assets)) {
|
2020-07-29 04:46:33 +02:00
|
|
|
paths.push("./static/js/debug");
|
2019-10-23 07:46:34 +02:00
|
|
|
}
|
2017-07-28 22:53:37 +02:00
|
|
|
config.devServer = {
|
2018-04-25 21:16:08 +02:00
|
|
|
clientLogLevel: "error",
|
2020-04-04 01:47:18 +02:00
|
|
|
headers: {
|
|
|
|
"Access-Control-Allow-Origin": "*",
|
|
|
|
},
|
|
|
|
publicPath: "/webpack/",
|
2018-04-25 21:16:08 +02:00
|
|
|
stats: "errors-only",
|
2017-07-28 22:53:37 +02:00
|
|
|
};
|
|
|
|
}
|
2019-06-29 10:13:08 +02:00
|
|
|
|
|
|
|
const serverConfig: webpack.Configuration = {
|
|
|
|
mode: production ? "production" : "development",
|
|
|
|
target: "node",
|
|
|
|
context: resolve(__dirname, "../"),
|
|
|
|
entry: {
|
|
|
|
"katex-cli": "shebang-loader!katex/cli",
|
|
|
|
},
|
|
|
|
output: {
|
|
|
|
path: resolve(__dirname, "../static/webpack-bundles"),
|
|
|
|
filename: "[name].js",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return [config, serverConfig];
|
2015-10-26 17:11:44 +01:00
|
|
|
};
|