-
Notifications
You must be signed in to change notification settings - Fork 30
/
webpack.config.js
96 lines (90 loc) · 2.21 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
/**
* Configs file for bundling
*/
'use strict';
var path = require('path');
var pkg = require('./package.json');
var webpack = require('webpack');
var MiniCssExtractPlugin = require('mini-css-extract-plugin');
var TerserPlugin = require('terser-webpack-plugin');
var OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
function getOptimization(isMinified) {
if (isMinified) {
return {
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: false,
extractComments: false
}),
new OptimizeCSSAssetsPlugin()
]
};
}
return {
minimize: false
};
}
module.exports = function(env, argv) {
var isProduction = argv.mode === 'production';
var isMinified = !!argv.minify;
var FILENAME = pkg.name + (isMinified ? '.min' : '');
var BANNER = [
'TOAST UI Date Picker',
'@version ' + pkg.version,
'@author ' + pkg.author,
'@license ' + pkg.license
].join('\n');
return {
mode: isProduction ? 'production' : 'development',
entry: './src/js/index.js',
output: {
library: ['tui', 'DatePicker'],
libraryTarget: 'umd',
path: path.resolve(__dirname, 'dist'),
publicPath: 'dist',
filename: FILENAME + '.js'
},
externals: {
'tui-time-picker': {
commonjs: 'tui-time-picker',
commonjs2: 'tui-time-picker',
amd: 'tui-time-picker',
root: ['tui', 'TimePicker']
}
},
module: {
rules: [
{
test: /\.js$/,
exclude: /(test|node_modules)/,
loader: 'eslint-loader',
enforce: 'pre',
options: {
failOnError: isProduction
}
},
{
test: /\.css/,
use: [MiniCssExtractPlugin.loader, 'css-loader']
},
{
test: /\.png/,
loader: 'url-loader'
}
]
},
plugins: [
new webpack.BannerPlugin(BANNER),
new MiniCssExtractPlugin({ filename: FILENAME + '.css' })
],
optimization: getOptimization(isMinified),
devServer: {
historyApiFallback: false,
progress: true,
host: '0.0.0.0',
disableHostCheck: true
}
};
};