-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.dist.js
executable file
·127 lines (126 loc) · 3.82 KB
/
webpack.config.dist.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
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const resolve = require('path').resolve;
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const webpack = require('webpack');
const autoprefixer = require('autoprefixer');
const SpriteLoaderPlugin = require('svg-sprite-loader/plugin');
module.exports = {
devtool: 'source-map',
entry: [
'./src/main/index',
],
output: {
path: resolve(__dirname, 'dist', 'www'),
filename: 'bundle.js',
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
IS_WEBPACK: JSON.stringify(true),
NODE_ENV: JSON.stringify('production'),
RUN_MODE: JSON.stringify('es'),
},
}),
new CleanWebpackPlugin(['dist/www'], {
root: __dirname,
}),
new CopyWebpackPlugin([{
from: resolve(__dirname, 'index.html'),
to: resolve(__dirname, 'dist', 'www', 'index.html')
}]),
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: true,
options: {
context: __dirname,
postcss: [
autoprefixer,
],
},
}),
new SpriteLoaderPlugin(),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
mangle: true,
compress: {
warnings: true,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true,
},
output: {
comments: false,
},
}),
new ExtractTextPlugin('styles.css'),
],
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
include: resolve(__dirname),
exclude: /node_modules/,
},
{
test: /\.*css$/,
loader: ExtractTextPlugin.extract({
fallbackLoader: 'style-loader',
loader: 'css-loader!postcss-loader!sass-loader',
}),
},
{
test: /\.svg$/,
use: [
{
loader: 'svg-sprite-loader',
options: {
extract: true,
},
},
{
loader: 'svgo-loader',
options: {
plugins: [
{ removeTitle: true },
{ convertColors: { shorthex: false } },
{ convertPathData: false },
],
},
},
],
},
{
test: /\.icons\.(js|json)$/,
loader: ExtractTextPlugin.extract({
fallbackLoader: 'style-loader',
loader: 'css-loader!postcss-loader!sass-loader!webfonts-loader',
}),
},
{
test: /\.(png|jpg|eot|woff|woff2|ttf)$/,
loader: 'file-loader?',
},
{
test: /\.(txt)$/,
loader: 'raw-loader',
},
{
test: /\.ico$/,
loader: 'file-loader?name=[name].[ext]',
},
],
},
externals: {
fs: '{}',
'https-proxy-agent': '{}',
module: '{}',
},
};