-
Notifications
You must be signed in to change notification settings - Fork 9
/
webpack.common.js
130 lines (127 loc) · 3.2 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
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
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
app: './src/index.js',
config: './app/config/config.js',
'theme.default': './app/styles/theme.default.scss',
'theme.original': './app/styles/theme.original.scss',
'theme.red': './app/styles/theme.red.scss',
'theme.darkgreen': './app/styles/theme.darkgreen.scss'
},
output: {
filename: (pathData) => {
if (pathData.chunk.name === 'config') {
return 'config/config.js';
}
else if (pathData.chunk.name.indexOf('theme') >= 0) {
return 'styles/[name].[hash].js';
}
else {
return '[name].[hash].js';
}
},
chunkFilename: '[name].[hash].js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [{
test: /\.html$/,
use: {
loader: 'html-loader',
options: {
minimize: true
}
}
}, {
test: /\.js$/,
exclude: /node_modules/,
use: [{
loader: 'ng-annotate-loader',
options: {
ngAnnotate: 'ng-annotate-patched',
es6: true,
explicitOnly: false
}
}, {
loader: 'babel-loader'
}, {
loader: 'eslint-loader'
}]
}, {
test: /\.(sa|sc|c)ss$/,
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 1
}
}, {
loader: 'postcss-loader',
options: {
sourceMap: true,
plugins: [
require('autoprefixer')({
browsers: [
'last 5 version',
'ie >= 11',
'Firefox ESR',
'Firefox >= 38',
'Edge >= 38'
]
})
]
}
}, {
loader: 'sass-loader',
options: {
sourceMap: true
}
}]
}, {
test: /\.(png|svg|jpg|gif|woff|woff2|eot|ttf|otf)$/,
use: [{
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
}
}]
}]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
filename: './index.html',
excludeChunks: ['theme.red', 'theme.darkgreen', 'theme.original']
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
Base64: 'js-base64',
moment: 'moment/moment',
Waves: 'node-waves',
Flow: '@flowjs/flow.js/dist/flow',
uuid: 'uuid'
}),
new webpack.HashedModuleIdsPlugin(),
new MiniCssExtractPlugin({
filename: '[name].[hash].css',
chunkFilename: '[id].[hash].css'
}),
new CopyPlugin({
patterns: [
{ from: 'app/i18n/original', to: 'i18n/original' },
{ from: 'app/favicon.ico', to: 'favicon.ico' },
{ from: 'app/images/common', to: 'images' },
{ from: 'package.json', to: 'about.json' },
{ from: 'error-pages', to: 'error-pages' }
]
})
]
};