-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathwebpack.config.ts
355 lines (337 loc) · 12.4 KB
/
webpack.config.ts
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
import webpack from 'webpack';
import path from 'path';
import glob from 'glob';
import { existsSync, rmSync } from 'fs-extra';
import _ from 'lodash';
import TerserPlugin from 'terser-webpack-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import CompressionPlugin from 'compression-webpack-plugin';
import ImageminPlugin from 'imagemin-webpack-plugin';
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
const CONTEXT_PATH = '/console';
export default (
env: { analyse?: 'widgets' | 'main'; widget?: string },
argv: { debug?: boolean; mode?: webpack.Configuration['mode'] | 'test' }
) => {
const isProduction = argv.mode === 'production';
const isDevelopment = argv.mode === 'development';
const isSingleWidgetBuild = !!env.widget;
const widgetName = env.widget;
const mode = isProduction ? 'production' : 'development';
const context = path.join(__dirname);
const devtool = isProduction ? undefined : 'eval-source-map';
const outputPath = path.join(__dirname, 'dist');
const extensions = ['js', 'jsx', 'ts', 'tsx'];
const resolveExtensions = extensions.map(extension => `.${extension}`);
const globExtensions = `{${extensions.map(extension => `${extension}`).join(',')}}`;
const externals = {
react: 'React',
'react-dom': 'ReactDOM',
lodash: '_',
'react-query': 'ReactQuery',
'styled-components': 'Stage.styled'
};
const module: webpack.Configuration['module'] = {
rules: _.compact([
!isProduction && {
test: /\.js$/,
use: ['source-map-loader'],
enforce: 'pre'
},
{
test: /\.(j|t)s(x?)$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader'
}
]
},
{
test: /\.scss$/,
use: [
{
loader: 'style-loader'
},
{
loader: 'css-loader'
},
{
loader: 'sass-loader'
}
]
},
{
test: /\.css$/,
use: [
{
loader: 'style-loader'
},
{
loader: 'css-loader',
options: {
importLoaders: 1
}
}
]
},
{
test: /\.less$/,
use: [
{
loader: 'style-loader'
},
{
loader: 'css-loader'
},
{
loader: 'less-loader',
options: {
lessOptions: {
math: 'always'
}
}
}
]
},
{
// eslint-disable-next-line security/detect-unsafe-regex
test: /\.(eot|woff|woff2|ttf)(\?\S*)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 100000,
name: `${isProduction ? '/' : ''}static/fonts/[name].[ext]`
}
}
]
},
{
// eslint-disable-next-line security/detect-unsafe-regex
test: /\.(svg|png|jpe?g|gif)(\?\S*)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 100000,
name: `${isProduction ? '/' : ''}static/images/[name].[ext]`
}
}
]
}
])
};
const getProductionPlugins = (isAnalysisMode: boolean) =>
isAnalysisMode
? [new BundleAnalyzerPlugin()]
: [
new ImageminPlugin({ test: /\.(jpe?g|png|gif|svg)$/i }),
new CompressionPlugin({
algorithm: 'gzip',
test: /\.js$|\.css$|\.html$/,
threshold: 10240,
minRatio: 0.8
})
];
const environmentPlugin = new webpack.EnvironmentPlugin({
'process.env.NODE_ENV': 'production',
'process.env.TEST': ''
});
const exitWithError = (error: string) => {
console.error(`ERROR: ${error}`);
process.exit(-1);
};
if (isProduction && existsSync(outputPath)) {
try {
rmSync(outputPath, { recursive: true });
} catch (err) {
exitWithError(`Cannot delete output directory: ${outputPath}. Error: ${err}.`);
}
}
const widgetsConfiguration: webpack.Configuration = {
mode,
context,
devtool,
resolve: {
extensions: resolveExtensions
},
entry: glob.sync(`./widgets/*/src/widget.${globExtensions}`).reduce((acc, item) => {
const name = item
.replace('./widgets/', '')
.replace('/src/widget', '/widget')
.replace(/(tsx)|(jsx)/, 'js');
acc[name] = item;
return acc;
}, {}),
output: {
path: path.join(outputPath, 'appData'),
filename: 'widgets/[name]',
publicPath: CONTEXT_PATH
},
module,
plugins: _.flatten(
_.compact([
new CopyWebpackPlugin({
patterns: _.compact([
{
from: 'widgets',
to: 'widgets',
globOptions: {
ignore: ['**/src/**']
}
}
])
}),
environmentPlugin,
isProduction && getProductionPlugins(env && env.analyse === 'widgets')
])
),
externals
};
if (isSingleWidgetBuild) {
const widgetPath = path.join(__dirname, `./widgets/${widgetName}`);
if (existsSync(widgetPath)) {
console.log('Building widget', widgetName);
} else {
exitWithError(`Invalid widget name provided. Widget directory "${widgetPath}" does not exist.`);
}
const singleWidgetConfiguration: webpack.Configuration = {
...widgetsConfiguration,
entry: glob.sync(`./widgets/${widgetName}/src/widget.${globExtensions}`).reduce((acc, item) => {
const name = item
.replace('./widgets/', '')
.replace('/src/widget', '/widget')
.replace(/(tsx)|(jsx)/, 'js');
acc[name] = item;
return acc;
}, {}),
output: {
path: outputPath,
filename: 'widgets/[name]',
publicPath: CONTEXT_PATH
},
plugins: _.flatten(
_.compact([
new CopyWebpackPlugin({
patterns: [
{
from: `widgets/${widgetName}`,
to: `widgets/${widgetName}`,
globOptions: {
ignore: ['**/src/**']
}
}
]
}),
environmentPlugin,
isProduction && getProductionPlugins(env && env.analyse === 'widgets')
])
)
};
return singleWidgetConfiguration;
}
const configuration: webpack.Configuration[] = [
{
mode,
optimization: isProduction
? {
splitChunks: {
chunks: 'initial',
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'initial'
}
}
},
minimizer: [
new TerserPlugin({
extractComments: false
})
]
}
: undefined,
context,
devtool,
resolve: {
extensions: resolveExtensions,
alias: {
// Necessary to use the same version of React when developing components locally
// @see https://github.com/facebook/react/issues/13991#issuecomment-435587809
react: `${__dirname}/node_modules/react`,
// Necessary to map semantic react ui theming paths
// @see "Configuring Webpack for theming" https://react.semantic-ui.com/theming/
'../../theme.config$': `${__dirname}/semantic-ui/theme.config`,
'../semantic-ui/site': `${__dirname}/semantic-ui/site`
},
fallback: {
// Required by the cypress, as from the [email protected] is not including node.js core modules by default
// If some other node.js core module (like 'fs') would be used within the cypress code, it should be listed below
path: false
}
},
entry: ['./app/main.ts'],
output: {
path: outputPath,
filename: 'static/js/[name].bundle.js',
publicPath: CONTEXT_PATH
},
module,
plugins: _.flatten(
_.compact([
new CopyWebpackPlugin({
patterns: [
{
from: 'node_modules/cloudify-ui-common-frontend/images/favicon.png',
to: 'static/images'
},
{
from: 'app/images/*',
to: 'static/images/[name].[ext]'
},
{
from: 'templates',
to: 'appData/templates'
},
{
context: 'node_modules/cloudify-blueprint-topology/dist/icons',
from: '**/*',
to: 'static/images/topology'
}
]
}),
new HtmlWebpackPlugin({
template: 'app/index.tmpl.html',
inject: 'body',
filename: 'static/index.html'
}),
new webpack.ProvidePlugin({
d3: 'd3'
}),
isDevelopment &&
new ForkTsCheckerWebpackPlugin({
eslint: {
files: './{app,widgets}/**/*.{ts,tsx,js,tsx}'
},
typescript: {
configFile: './tsconfig.ui.json',
build: true,
mode: 'write-references'
}
}),
environmentPlugin,
isProduction && getProductionPlugins(env && env.analyse === 'main')
])
)
},
widgetsConfiguration
];
if (argv.debug) {
console.log('Webpack Configuration', configuration);
}
return configuration;
};