-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathwebpack.config.build.js
54 lines (51 loc) · 1.17 KB
/
webpack.config.build.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
'use strict';
const webpack = require('webpack');
const MIN = process.argv.indexOf('-p') > -1;
function getBanner() {
const pkg = require('./bower.json');
return `
/**
* ${pkg.name} - ${pkg.description}
* @version v${pkg.version}
* @link ${pkg.homepage}
* @license ${pkg.license}
*/
`.trim();
}
module.exports = {
entry: __dirname + '/src/angular-bootstrap-confirm.js',
output: {
path: __dirname + '/dist',
filename: MIN ? 'angular-bootstrap-confirm.min.js' : 'angular-bootstrap-confirm.js',
libraryTarget: 'umd',
library: 'angularBootstrapConfirmModuleName'
},
externals: {
angular: 'angular',
'angular-sanitize': 'angular-sanitize',
'./ui-bootstrap-position': 'angular'
},
devtool: MIN ? 'source-map' : null,
module: {
preLoaders: [{
test: /.*\.js$/,
loader: 'eslint',
exclude: /node_modules/
}],
loaders: [{
test: /.*\.js$/,
loader: 'ng-annotate',
exclude: /node_modules/
}, {
test: /\.html$/,
loader: 'raw'
}]
},
plugins: [
new webpack.NoErrorsPlugin(),
new webpack.BannerPlugin(getBanner(), {
raw: true,
entryOnly: true
})
]
};