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
|
const webpack = require('webpack');
const path = require('path');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const ErrorOverlayPlugin = require('error-overlay-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
module.exports = (env, argv) => {
const dev = argv.mode !== 'production';
const config = {
devtool: dev ? 'source-map' : false,
mode: dev ? 'development' : 'production',
entry: {
'Juick': [
'core-js/modules/es.array.map',
'core-js/modules/es.map',
'core-js/modules/es.object.create',
'core-js/modules/es.object.define-property',
'core-js/modules/es.object.set-prototype-of',
'core-js/modules/es.promise',
'core-js/modules/es.set',
'core-js/modules/es.symbol',
'core-js/modules/web.dom-collections.iterator',
'url-polyfill',
__dirname + '/src/index.js',
require.resolve('evil-icons/assets/evil-icons.css')
]
},
output: {
filename: dev ? '[name].js' : '[name].[contenthash].bundle.js',
chunkFilename: dev ? '[name].js' : '[name].[contenthash].bundle.js',
publicPath: '/',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{
test: /\.css$/,
use: [
dev ? 'style-loader' : MiniCssExtractPlugin.loader,
{
loader: 'css-loader'
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
'stylelint',
['postcss-preset-env', { stage: 0 } ]
]
}
}
}
]
},
{
test: /\.html$/,
use: [
{
loader: 'html-loader',
options: { minimize: false }
}
]
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loader: 'file-loader',
options: {
hash: 'sha512',
digest: 'hex',
name: '[contenthash].[ext]'
}
}
]
},
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new MiniCssExtractPlugin({
filename: 'Juick.[contenthash].css'
}),
new HtmlWebPackPlugin({
template: './src/index.html',
filename: './index.html'
}),
new ESLintPlugin({ files: 'src', lintDirtyModulesOnly: true, failOnWarning: false, failOnError: true, fix: false })
],
devServer: {
bonjour: true,
historyApiFallback: true,
host: '0.0.0.0',
hot: true,
inline: true,
overlay: true
}
};
if (dev) {
config.plugins.push(new webpack.HotModuleReplacementPlugin());
} else {
config.optimization = {
minimizer: [
'...',
new CssMinimizerPlugin({
sourceMap: true
})
],
splitChunks: {
chunks: 'all'
}
};
}
return config;
};
|