forked from dollarshaveclub/postmate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
executable file
·70 lines (65 loc) · 1.74 KB
/
webpack.config.js
File metadata and controls
executable file
·70 lines (65 loc) · 1.74 KB
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
/* global __dirname, require, module*/
const webpack = require('webpack');
const UglifyJsPlugin = webpack.optimize.UglifyJsPlugin;
const OptimizeJsPlugin = require('optimize-js-plugin');
const path = require('path');
const env = require('yargs').argv.env; // use --env with webpack 2
const info = require('./package.json');
const banner = `@overview ${info.name} - ${info.description}.
@copyright Copyright (c) ${(new Date()).getFullYear()} ${info.author.name}
@license Licensed under ${info.license} license
@version ${info.version}`;
module.exports = [
{
entry: 'postmate',
library: 'Postmate'
},
{
entry: 'secure-postmate',
library: 'SecurePostmate'
}
].map(function (config) {
let plugins = [], outputFile;
if (env === 'build') {
plugins.push(new UglifyJsPlugin());
plugins.push(new OptimizeJsPlugin({
sourceMap: false
}));
plugins.push(new webpack.BannerPlugin(banner));
outputFile = '[name].min.js';
} else {
outputFile = '[name].js';
}
return {
entry: {
[config.entry]: './src/' + config.entry + '.js'
},
devtool: 'source-map',
output: {
path: __dirname + '/build',
filename: outputFile,
library: config.library,
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [
{
test: /(\.jsx|\.js)$/,
loader: 'babel-loader',
exclude: /(node_modules|bower_components)/
},
{
test: /(\.jsx|\.js)$/,
loader: 'eslint-loader',
exclude: /node_modules/
}
]
},
resolve: {
modules: [path.resolve('./src'), path.resolve('./test'), path.resolve('node_modules')],
extensions: ['.json', '.js']
},
plugins: plugins
};
});