forked from angular-ui/ui-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
49 lines (45 loc) · 1.14 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
var path = require('path');
var webpack = require('webpack');
var packageJSON = require('./package.json');
var getBanner = function (compressed) {
return packageJSON.name + (compressed ? ' (compressed)' : ' (uncompressed)') + '\n' +
packageJSON.homepage + '\n' +
'Version: ' + packageJSON.version + ' -- ' + (new Date()).toISOString() + '\n' +
'License: ' + packageJSON.license;
};
module.exports.config = {
entry: {
'ui-scroll': './src/ui-scroll.js',
'ui-scroll-grid': './src/ui-scroll-grid.js'
},
output: {
path: path.join(__dirname, 'temp'),
filename: '[name].js'
},
cache: false,
devtool: 'source-map',
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader?presets[]=es2015'
}
]
},
plugins: [
new webpack.BannerPlugin(getBanner(false))
]
};
module.exports.compressedPlugins = [
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: true,
},
output: {
comments: false,
},
}),
new webpack.BannerPlugin(getBanner(true))
];