This repository has been archived by the owner on Oct 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
99 lines (91 loc) · 2.49 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
/**
* Configs file for bundling
* @author NHN Ent. FE Development Lab <[email protected]>
*/
'use strict';
var pkg = require('./package.json');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var SafeUmdPlugin = require('safe-umd-webpack-plugin');
var isProduction = process.argv.indexOf('--production') >= 0;
var FILENAME = pkg.name + (isProduction ? '.min.js' : '.js');
var BANNER = [
FILENAME,
'@version ' + pkg.version,
'@author ' + pkg.author,
'@license ' + pkg.license
].join('\n');
var config = {
eslint: {
failOnError: isProduction
},
entry: './src/js/index.js',
output: {
library: ['tui', 'DatePicker'],
libraryTarget: 'umd',
path: 'dist',
publicPath: 'dist',
filename: FILENAME
},
externals: {
'jquery': {
'commonjs': 'jquery',
'commonjs2': 'jquery',
'amd': 'jquery',
'root': '$'
},
'@ivanwei/tui-code-snippet': {
'commonjs': '@ivanwei/tui-code-snippet',
'commonjs2': '@ivanwei/tui-code-snippet',
'amd': '@ivanwei/tui-code-snippet',
'root': ['tui', 'util']
},
'@ivanwei/tui-time-picker': {
'commonjs': '@ivanwei/tui-time-picker',
'commonjs2': '@ivanwei/tui-time-picker',
'amd': '@ivanwei/tui-time-picker',
'root': ['tui', 'TimePicker']
}
},
module: {
preLoaders: [
{
test: /\.js$/,
exclude: /(test|node_modules)/,
loader: 'eslint-loader'
},
{
test: /\.hbs$/,
exclude: /(node_modules)/,
loader: 'handlebars-loader'
},
{
test: /\.css/,
loader: ExtractTextPlugin.extract('style-loader', ['css-loader'])
},
{
test: /\.png/,
loader: 'url-loader'
}
]
},
plugins: [
new SafeUmdPlugin(),
new webpack.BannerPlugin(BANNER),
new ExtractTextPlugin(pkg.name + '.css')
],
devServer: {
historyApiFallback: false,
progress: true,
host: '0.0.0.0',
disableHostCheck: true
}
};
if (isProduction) {
config.plugins.push(new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}));
}
module.exports = config;