forked from compiler-explorer/compiler-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
101 lines (97 loc) · 3 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const path = require('path'),
webpack = require('webpack'),
CopyWebpackPlugin = require('copy-webpack-plugin'),
MiniCssExtractPlugin = require('mini-css-extract-plugin'),
ManifestPlugin = require('webpack-manifest-plugin'),
TerserPlugin = require('terser-webpack-plugin'),
MonacoEditorWebpackPlugin = require('monaco-editor-webpack-plugin');
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 = ".v2.";
const plugins = [
new MonacoEditorWebpackPlugin({
languages: ['cpp', 'go', 'rust', 'swift', 'pascal'],
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: ''
})
];
module.exports = {
mode: isDev ? 'development' : 'production',
entry: './static/main.js',
output: {
filename: isDev ? '[name].js' : `[name]${webjackJsHack}[contenthash].js`,
path: staticPath
},
resolve: {
modules: ['./static', './node_modules']
},
stats: 'normal',
devtool: 'source-map',
optimization: {
minimize: !isDev,
minimizer: [
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/'),
use: ['css-loader']
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
loader: 'url-loader?limit=8192'
},
{
test: /\.(html)$/,
loader: 'html-loader',
options: {
minimize: !isDev
}
}
]
},
plugins: plugins
};