-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.babel.js
60 lines (57 loc) · 1.25 KB
/
webpack.config.babel.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
import HtmlWebpackPlugin from 'html-webpack-plugin'
import BrowserSyncPlugin from 'browser-sync-webpack-plugin'
import path from 'path'
import webpack from 'webpack'
let packageInfo = require('./package.json')
module.exports = {
entry: {
'roudokuka': './src/js/index.js',
},
resolve: {
modules: [
path.resolve(__dirname, 'src/js'),
'node_modules'
]
},
output: {
filename: '[name].min.js',
path: path.join(__dirname, 'docs'),
libraryTarget: 'umd'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.pug$/,
loader: 'pug-loader',
options: {
pretty: true
}
}
]
},
plugins: [
new webpack.optimize.UglifyJsPlugin(),
new webpack.BannerPlugin({
banner: `${packageInfo.name} v${packageInfo.version}
Repository: https://github.com/snowsunny/roudokuka
Copyright: snowsunny
License: ${packageInfo.license}`
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/pug/index.pug',
inject: 'head'
}),
new BrowserSyncPlugin({
host: 'localhost',
port: 8080,
server: { baseDir: ['docs'] }
})
],
watch: true
}