-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.common.js
85 lines (84 loc) · 2.41 KB
/
webpack.common.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
/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2008-present Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
* which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
* of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
* Eclipse Foundation. All other trademarks are the property of their respective owners.
*/
const CopyModulesPlugin = require('copy-modules-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserJSPlugin = require('terser-webpack-plugin');
const path = require('path');
const libImgDir = path.resolve(__dirname, 'node_modules/@sonatype/react-shared-components/assets/img');
module.exports = {
entry: './src/frontend/src',
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader'
}
]
},
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader
},
'css-loader',
'sass-loader'
]
},
{
include: libImgDir,
loader: 'file-loader',
options: {
name: 'img/[name].[ext]'
}
},
{
test: /\.(ttf|eot|woff2?|svg)$/,
exclude: libImgDir,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]'
}
}
]
},
optimization: {
minimizer: [
new TerserJSPlugin({
cache: true,
parallel: true,
sourceMap: true
}),
new OptimizeCSSAssetsPlugin({})]
},
plugins: [
new CopyModulesPlugin({
destination: path.resolve(__dirname, 'target/webpack-modules')
}),
new MiniCssExtractPlugin({
filename: 'nexus-report-bundle.css'
})
],
resolve: {
extensions: ['.js', '.jsx']
},
externals: {
react: 'react',
axios: 'axios',
xstate: 'xstate'
}
};