-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwebpack.config.js
200 lines (188 loc) · 4.94 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
/*
* webpack 4+
* */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const WebpackMd5Hash = require('webpack-md5-hash');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const webpack = require('webpack');
// const IsWebpackDevServer = /webpack-dev-server/.test(process.env.npm_lifecycle_script);
module.exports = (env = {}, argv = {}) => {
//console.log('***', 'env', env, 'argv', argv, '***');
const PRODUCTION = 'production';
const DEVELOPMENT = 'development';
const VALIDATE = 'validate';
const entries = {
[PRODUCTION]: './src/library/SlideToggle.js',
[DEVELOPMENT]: './src/development-entry',
[VALIDATE]: './src/validate-entry',
};
let type;
if (env.VALIDATE) {
type = VALIDATE;
} else {
type = argv.mode === PRODUCTION ? PRODUCTION : DEVELOPMENT;
}
let port;
if (env.PORT) {
port = env.PORT;
} else {
port = 5555;
}
const isProd = argv.mode === PRODUCTION;
let entry = entries[type];
console.log('***', type, entry, '***');
let config = {
devtool: isProd ? 'source-map' : 'cheap-module-source-map',
mode: isProd ? PRODUCTION : DEVELOPMENT,
optimization: {
minimizer: [
isProd &&
new UglifyJsPlugin({
uglifyOptions: {
compress: {
drop_console: true,
},
output: {
comments: false,
},
},
cache: true,
parallel: true,
sourceMap: true,
extractComments: true,
}),
isProd &&
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: {
sourcemap: true,
},
}),
].filter(Boolean),
},
entry: {
ReactSlideToggle: entry,
},
output: {
path: path.resolve(__dirname, 'dist'),
chunkFilename: '[name].js',
filename: '[name].js',
library: 'ReactSlideToggle',
libraryTarget: 'umd',
publicPath: '/',
},
devServer: {
//https: true,
port,
contentBase: path.join(__dirname, ''),
publicPath: '/',
open: true,
hot: true,
disableHostCheck: true,
watchContentBase: true,
historyApiFallback: true,
},
module: {
rules: [
{
test: /\.html$/,
exclude: /node_modules/,
use: [
{
loader: 'html-loader',
options: {
minimize: isProd,
},
},
],
},
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
include: path.join(__dirname, 'src'),
use: {
loader: 'babel-loader',
},
},
{
test: /\.scss$/,
exclude: /node_modules/,
include: path.join(__dirname, 'src'),
use: [
{
loader: isProd ? MiniCssExtractPlugin.loader : 'style-loader',
options: isProd
? {
publicPath: './',
}
: {},
},
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
},
].filter(Boolean),
},
plugins: [
isProd && new CleanWebpackPlugin('dist', {}),
new MiniCssExtractPlugin({ filename: '[name].css', chunkFilename: '[name]-[id].css' }),
new HtmlWebpackPlugin({
compile: false,
inject: true,
hash: true,
template: 'src/demo/index.html',
filename: 'index.html',
}),
// This is necessary to emit hot updates (currently CSS only):
!isProd && new webpack.HotModuleReplacementPlugin(),
new WebpackMd5Hash(),
].filter(Boolean),
resolve: {
//modules: [path.resolve(__dirname), 'node_modules'],
extensions: ['.js', '.jsx', '.scss'],
alias: {
'~': __dirname,
root: __dirname,
src: path.resolve(__dirname, 'src'),
library: path.resolve(__dirname, 'src/library'),
},
},
externals: {},
};
if (isProd) {
config.externals['react'] = {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
umd: 'react',
};
config.externals['react-dom'] = {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom',
umd: 'react-dom',
};
}
return config;
};