forked from klaro-org/klaro-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
267 lines (249 loc) · 7.37 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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
const webpack = require('webpack');
const path = require('path');
const BUILD_DIR = path.resolve(__dirname, 'dist');
const SRC_DIR = path.resolve(__dirname, 'src');
const APP_ENV = process.env.APP_ENV || 'dev';
const ANALYZE_BUNDLE = process.env.ANALYZE_BUNDLE !== undefined;
const SEPARATE_CSS = process.env.SEPARATE_CSS !== undefined;
const NO_MINIFY_CSS = process.env.NO_MINIFY_CSS !== undefined;
const APP_DEV_MODE = APP_ENV === 'dev' && process.env.APP_DEV_MODE;
const STYLE_FILES = /\.(sa|sc|c)ss$/;
const BundleAnalyzerPlugin =
require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
function withEnvSourcemap(loader) {
return APP_ENV === 'dev' ? loader + '?sourceMap' : loader;
}
let config = {
mode: 'development',
target: 'web',
context: SRC_DIR,
resolve: {
symlinks: false,
extensions: ['.jsx', '.js'],
modules: [SRC_DIR, 'node_modules'],
alias: {
react: 'preact/compat',
'react-dom': 'preact/compat',
},
},
module: {
rules: [
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
use: 'url-loader?limit=100000',
},
{
test: /\.yaml|yml$/,
use: ['json-loader', 'yaml-loader'],
},
{
test: /\.jsx?/,
include: [SRC_DIR],
loader: 'babel-loader',
},
],
},
entry: {
// here we only define the consent manager and the translations, the
// main Klaro files are defined below as they require special naming rules
cm: SRC_DIR + '/consent-manager.js',
translations: SRC_DIR + '/translations.js',
ide: SRC_DIR + '/ide.js',
},
output: {
path: BUILD_DIR,
filename: '[name].js',
library: '[name]',
libraryTarget: 'umd',
publicPath: '',
},
plugins: [],
};
if (ANALYZE_BUNDLE) {
config.plugins.push(new BundleAnalyzerPlugin());
}
if (SEPARATE_CSS) {
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
// no CSS does not apply to the consent manager and translations
config.module.rules.push({
test: STYLE_FILES,
use: [
{
loader: MiniCssExtractPlugin.loader,
// options: {
// // hmr: APP_ENV === 'dev',
// // reloadAll: true,
// },
},
{
loader: 'css-loader',
options: {
sourceMap: APP_ENV === 'dev',
},
},
withEnvSourcemap({
loader: 'postcss-loader',
options: { postcssOptions: { path: 'postcss.config.js' } },
}),
{
loader: 'sass-loader',
options: {
sassOptions: {
sourceMap: APP_ENV === 'dev',
outputStyle: NO_MINIFY_CSS ? 'expanded' : 'compressed',
},
},
},
],
});
config.plugins.push(
new MiniCssExtractPlugin({
filename: NO_MINIFY_CSS ? 'klaro.css' : 'klaro.min.css',
})
);
} else {
config.module.rules.push({
test: STYLE_FILES,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: APP_ENV === 'dev',
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
postcssOptions: {
path: 'postcss.config.js',
},
},
},
// withEnvSourcemap({loader: 'postcss-loader', options: {config: {path: 'postcss.config.js'}}}),
{
loader: 'sass-loader',
options: {
sassOptions: {
sourceMap: APP_ENV === 'dev',
},
},
},
],
});
}
if (APP_ENV === 'dev') {
config = {
...config,
devtool: 'inline-source-map',
plugins: [
...config.plugins,
new webpack.DefinePlugin({
VERSION: JSON.stringify('development'),
}),
],
};
}
if (APP_DEV_MODE === 'server') {
config = {
...config,
devServer: {
// enable Hot Module Replacement on the server
hot: true,
// match the output path
static: {
directory: path.join(__dirname, 'dist'),
},
// match the output `publicPath`
// publicPath: '',
// always render index.html if the document does not exist (we need this for correct routing)
historyApiFallback: true,
client: {
overlay: true,
},
proxy: {
'/api': {
target: 'http://localhost:5000/',
secure: false,
},
},
// we enable CORS requests (useful for testing)
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods':
'GET, POST, PUT, DELETE, PATCH, OPTIONS',
'Access-Control-Allow-Headers':
'X-Requested-With, content-type, Authorization',
},
allowedHosts: 'all',
},
plugins: [...config.plugins],
};
}
if (APP_ENV === 'production') {
config = {
...config,
mode: 'production',
optimization: {
minimize: true,
},
plugins: [
...config.plugins,
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"',
VERSION: JSON.stringify(
process.env.CI_APP_VERSION ||
process.env.APP_VERSION ||
process.env.APP_COMMIT ||
'unknown'
),
}),
new webpack.optimize.AggressiveMergingPlugin(),
],
};
}
// we create separate configs for Klaro with and without translations as
// Webpack isn't able to generate two modules with different filenames but
// the same module name...
const klaroWithTranslationsConfig = {
...config,
...{
output: {
path: BUILD_DIR,
filename: SEPARATE_CSS ? 'klaro-no-css.js' : 'klaro.js',
library: 'klaro',
libraryTarget: 'umd',
publicPath: '',
},
entry: {
klaro: SRC_DIR + '/klaro.js',
},
},
};
const klaroWithoutTranslationsConfig = {
...config,
...{
output: {
path: BUILD_DIR,
filename: SEPARATE_CSS
? 'klaro-no-translations-no-css.js'
: 'klaro-no-translations.js',
library: 'klaro',
libraryTarget: 'umd',
publicPath: '',
},
entry: {
klaro: SRC_DIR + '/klaro-no-translations.js',
},
},
};
module.exports = [
config,
klaroWithoutTranslationsConfig,
klaroWithTranslationsConfig,
];