blob: 074cddf0c9e96c9794a56d4dfe084bd433aee284 [file] [log] [blame] [raw]
/* eslint-disable node/no-unpublished-import */
import path from 'path';
import { fileURLToPath } from 'url';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import MonacoEditorWebpackPlugin from 'monaco-editor-webpack-plugin';
import OptimizeCssAssetsPlugin from 'optimize-css-assets-webpack-plugin';
import TerserPlugin from 'terser-webpack-plugin';
import webpack from 'webpack';
import ManifestPlugin from 'webpack-manifest-plugin';
const __dirname = path.resolve(path.dirname(fileURLToPath(import.meta.url)));
const isDev = process.env.NODE_ENV !== 'production';
const distPath = path.resolve(__dirname, 'out', 'dist');
const staticPath = path.join(distPath, 'static');
// Hack alert: due to a variety of issues, sometimes we need to change
// the name here. Mostly it's things like webpack changes that affect
// how minification is done, even though that's supposed not to matter.
const webjackJsHack = '.v3.';
const plugins = [
new MonacoEditorWebpackPlugin({
languages: [ 'cpp', 'go', 'pascal', 'python', 'rust', 'swift' ],
filename: isDev ? '[name].worker.js' : `[name]${webjackJsHack}worker.[contenthash].js`,
}),
new CopyWebpackPlugin([
{
from: 'node_modules/es6-shim/es6-shim.min.js',
to: staticPath,
},
]),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
}),
new MiniCssExtractPlugin({
filename: isDev ? '[name].css' : '[name].[contenthash].css',
}),
new ManifestPlugin({
fileName: path.join(distPath, 'manifest.json'),
publicPath: '',
}),
];
// eslint-disable-next-line import/no-default-export
export default {
mode: isDev ? 'development' : 'production',
entry: {
main: './static/main.js',
noscript: './static/noscript.js',
},
output: {
filename: isDev ? '[name].js' : `[name]${webjackJsHack}[contenthash].js`,
path: staticPath,
},
resolve: {
alias: {
'monaco-editor$': 'monaco-editor/esm/vs/editor/editor.api',
},
modules: ['./static', './node_modules'],
},
stats: 'normal',
devtool: 'source-map',
optimization: {
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
vendors: {
test: /[/\\]node_modules[/\\]/,
name: 'vendor',
chunks: 'all',
priority: -10,
},
},
},
moduleIds: 'hashed',
minimizer: [
new OptimizeCssAssetsPlugin({
cssProcessorPluginOptions: {
preset: ['default', { discardComments: { removeAll: true } }],
},
}),
new TerserPlugin({
parallel: true,
sourceMap: true,
terserOptions: {
ecma: 5,
},
}),
],
},
module: {
rules: [
{
test: /\.css$/,
exclude: path.resolve(__dirname, 'static/themes/'),
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: './',
hmr: isDev,
},
},
'css-loader',
],
},
{
test: /\.css$/,
include: path.resolve(__dirname, 'static/themes/'),
loader: 'css-loader',
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
loader: 'url-loader?limit=8192',
},
{
test: /\.(html)$/,
loader: 'html-loader',
},
],
},
plugins: plugins,
};