-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
159 lines (133 loc) · 4.34 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
'use strict';
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
var CommonsChunkPlugin = webpack.optimize.CommonsChunkPlugin;
function getConfig(options) {
var config = {
entry: {
app: './client/index.js',
vendor: [
'angular',
'angular-cookies',
'angular-resource',
'angular-sanitize',
'@uirouter/angularjs',
'angular-messages',
'angular-validation-match',
'angular-material',
'@flowjs/flow.js'
]
},
output: {
path: options.build ? path.join(__dirname, '/dist/client/') : path.join(__dirname, '/.tmp/'),
filename: options.build ? '[name].[hash].js' : '[name].bundle.js',
chunkFilename: options.build ? '[name].[hash].js' : '[name].bundle.js'
},
module: {
rules: [{
// JS LOADER
// Reference: https://github.com/babel/babel-loader
// Transpile .js files using babel-loader
// Compiles ES6 and ES7 into ES5 code
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
"presets": ["es2015"],
"plugins": ["angularjs-annotate"]
}
},
include: [
path.resolve(__dirname, './client/')
]
}, {
// ASSET LOADER
// Reference: https://github.com/webpack/file-loader
// Copy png, jpg, jpeg, gif, svg, woff, woff2, ttf, eot files to output
// Rename the file using the asset hash
// Pass along the updated reference to your code
// You can add here any file extension you want to get copied to your output
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)([\?]?.*)$/,
use: 'file-loader'
}, {
// HTML LOADER
// Reference: https://github.com/webpack/raw-loader
// Allow loading html through js
test: /\.html$/,
use: 'raw-loader'
}, {
// CSS LOADER
// Reference: https://github.com/webpack/css-loader
// Allow loading css through js
//
// Reference: https://github.com/postcss/postcss-loader
// Postprocess your css with PostCSS plugins
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: [
{ loader: 'css-loader', query: { sourceMap: true, minimize: true } },
{ loader: 'postcss-loader' }
]
})
// Reference: https://github.com/webpack/extract-text-webpack-plugin
// Extract css files in production builds
//
// Reference: https://github.com/webpack/style-loader
// Use style-loader in development for hot-loading
}
]
},
plugins: [
new CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity
}),
new HtmlWebpackPlugin({
template: './client/_index.html',
filename: 'index.html',
alwaysWriteToDisk: true
}),
new HtmlWebpackHarddiskPlugin({
outputPath: path.resolve(__dirname, 'client')
}),
new ExtractTextPlugin('index.css')
],
cache: true
};
// Add build specific plugins
if (options.build) {
config.plugins.push(
// Reference: http://webpack.github.io/docs/list-of-plugins.html#noerrorsplugin
// Only emit files when there are no errors
new webpack.NoEmitOnErrorsPlugin(),
// Reference: http://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
// Minify all javascript, switch loaders to minimizing mode
new webpack.optimize.UglifyJsPlugin({
mangle: true,
sourceMap: true,
output: {
comments: false
},
compress: {
warnings: false
}
}),
// Reference: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
// Define free global variables
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: 'production'
}
})
);
}
config.devtool = 'source-map';
return config;
}
module.exports = {
get: getConfig
};