-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwebpack.build.js
39 lines (38 loc) · 888 Bytes
/
webpack.build.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
const path = require('path')
const webpack = require('webpack')
const CleanWebpackPlugin = require('clean-webpack-plugin')
module.exports = {
entry: ['./src/tata.js'],
output: {
filename: 'tata.js',
path: path.resolve(__dirname, 'dist'),
library: 'tata',
libraryTarget: 'var'
},
target: 'web',
module: {
rules: [
{
test: /\.css$/,
exclude: /node_modules/,
include: path.resolve(__dirname, 'src'),
use: ['style-loader', 'css-loader']
},
{
test: /.js?$/,
include: [path.resolve(__dirname, 'src')],
exclude: [path.resolve(__dirname, 'node_modules')],
loader: 'babel-loader'
}
]
},
plugins: [
new CleanWebpackPlugin(['dist']),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
drop_console: true
}
})
]
}