-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
83 lines (78 loc) · 2.1 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
/**
* Configs file for bundling
* @author NHN. FE Development Lab <[email protected]>
*/
const pkg = require('./package.json');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const SafeUmdPlugin = require('safe-umd-webpack-plugin');
const isProduction = process.argv.indexOf('-p') > -1;
const FILENAME = pkg.name + (isProduction ? '.min.js' : '.js');
const BANNER = [
FILENAME,
`@version ${pkg.version}`,
`@author ${pkg.author}`,
`@license ${pkg.license}`
].join('\n');
module.exports = {
eslint: {
failOnError: isProduction
},
entry: './src/js/index.js',
output: {
library: ['tui', 'FloatingLayer'],
libraryTarget: 'umd',
path: 'dist',
publicPath: 'dist/',
filename: FILENAME
},
externals: {
'tui-code-snippet': {
'commonjs': 'tui-code-snippet',
'commonjs2': 'tui-code-snippet',
'amd': 'tui-code-snippet',
'root': ['tui', 'util']
},
'tui-dom': {
'commonjs': 'tui-dom',
'commonjs2': 'tui-dom',
'amd': 'tui-dom',
'root': ['tui', 'dom']
}
},
module: {
preLoaders: [
{
test: /\.js$/,
exclude: /(dist|node_modules|bower_components)/,
loader: 'eslint-loader'
},
{
test: /\.css/,
loader: ExtractTextPlugin.extract('style-loader', ['css-loader'])
},
{
test: /\.png/,
loader: 'url-loader'
}
],
loaders: [
{
test: /\.js$/,
exclude: /(test|node_modules|bower_components)/,
loader: 'babel'
}
]
},
plugins: [
new SafeUmdPlugin(),
new webpack.BannerPlugin(BANNER),
new ExtractTextPlugin(`${pkg.name}.css`)
],
devServer: {
historyApiFallback: false,
progress: true,
host: '0.0.0.0',
disableHostCheck: true
}
};