forked from agdsn/pycroft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.babel.js
233 lines (230 loc) · 7.71 KB
/
webpack.config.babel.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import path from 'path';
import process from 'process';
import webpack from "webpack";
import ManifestPlugin from "webpack-manifest-plugin";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
import TerserPlugin from "terser-webpack-plugin";
// Check for production mode
const PROD = process.env.NODE_ENV === "production";
const src = path.resolve(__dirname, 'web', 'resources');
const dep = path.join(src, 'node_modules');
const dst = path.resolve(__dirname, 'web', 'static');
export default {
mode: PROD ? "production" : "development",
// We're creating a web application
target: 'web',
context: src,
entry: {
'advanced-search': './js/advanced-search.js',
'balance-chart': './js/balance-chart.js',
'lazy-load-select': './js/lazy-load-select.js',
'mac-address-input': './js/mac-address-input.js',
'confirmable-error': './js/confirmable-error.ts',
'main': './main.js',
'navigation': './js/navigation.js',
'tooltip': './js/tooltip.js',
'table-fixed-header': './js/table-fixed-header.js',
'traffic-graph': './js/traffic-graph.js',
'transaction-chart': './js/transaction-chart.js',
'transaction-form': './js/transaction-form.js',
'unlimited-end-date': './js/unlimited-end-date.js',
'select-multiple-improvement': './js/select-multiple-improvement.js',
'tab-anchor': './js/tab-anchor.js',
},
output: {
path: dst,
filename: `[name].[chunkhash].${PROD ? 'min.js' : 'js'}`,
hashFunction: 'md5',
hashDigest: 'hex',
hashDigestLength: 32,
pathinfo: !PROD,
},
watchOptions: {
aggregateTimeout: 1000,
ignored: [
dep,
],
},
devtool: PROD ? "source-map" : "eval-source-map",
resolve: {
symlinks: false,
extensions: ['.js', '.ts'],
},
optimization: {
minimizer: [
// Compress JavaScript
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: true,
}),
],
runtimeChunk: {
name: "main",
},
splitChunks: {
cacheGroups: {
vendor: {
name: "vendor",
chunks: "all",
enforce: true,
test: dep,
},
},
},
},
plugins: [
// Clean the destination
new CleanWebpackPlugin(),
// Create stable module IDs
new webpack.HashedModuleIdsPlugin({
hashFunction: 'md5',
hashDigest: 'hex',
hashDigestLength: 32,
}),
// Put CSS into a separate file
new MiniCssExtractPlugin({
filename: '[name].[hash].css',
chunkFilename: '[id].[hash].css',
allChunks: true,
}),
// Generate a manifest file, that maps entries and assets to their
// output file.
new ManifestPlugin(),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
].concat(PROD ? [
// PROD plugins
] : [
// !PROD plugins
]),
module: {
rules: [
// Use the source-map-loader to reuse existing source maps, that
// are provided by dependencies
{
test: /\.[j]sx?$/, // TODO look at how we can deal with this and typescript
use: ["source-map-loader"],
enforce: "pre",
include: dep,
},
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: dep,
},
// Some dependencies are not proper modules yet, they need to
// be shimmed and their dependencies need to be declared manually.
{
test: /\.js$/,
include: [
'bootstrap',
'bootstrap-datepicker',
'bootstrap-table',
].map(pkg => path.join(dep, pkg)),
},
// Expose our table module as a global variable.
// Functions from this module are referenced through
// data-*-attributes for use by bootstrap-table
{
// test: path.join(src, 'js', 'table.js'),
test: path.join(src, 'js', 'table.js'),
use: {
loader: "expose-loader",
options: {
exposes: "table",
},
},
},
{
test: path.join(dep, 'jquery'),
use: {
loader: "expose-loader",
options: {
exposes: "$",
},
},
},
// Inject bootstrap-table import into its locales
{
test: /\.js$/,
use: {
loader: "imports-loader",
options: {
imports: ['bootstrapTable bootstrap-table'],
},
},
include: path.join(dep, "bootstrap-table", "dist", "locale"),
},
// Transpile modern JavaScript for older browsers.
{
test: /\.jsx?$/,
exclude: dep,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
// Use the recommended preset-env
presets: [
['@babel/preset-env', {
targets: {
browsers: [
'IE 11',
'FF 52',
'Chrome 49',
],
},
// Let webpack handle modules
modules: false,
forceAllTransforms: PROD,
}],
],
// Import the babel runtime instead of inlining it in
// every file.
plugins: [
['@babel/plugin-transform-runtime', {
helpers: false,
regenerator: true,
useESModules: true,
}],
],
},
},
},
// Handle CSS
{
test: /\.css$/,
use: [
{
loader: "style-loader",
},
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: "css-loader",
},
],
},
// Handle other assets
{
test: [
/\.(?:gif|ico|jpg|png|svg)$/, // Images
/\.(?:eot|otf|ttf|woff|woff2)$/, // Fonts
/\.(?:xml)$/, // static XML initial for openSearch
],
use: {
loader: 'file-loader',
options: {
name: "[path][name].[hash].[ext]",
publicPath: './',
esModule: false,
},
},
},
],
},
};