-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
38 lines (36 loc) · 945 Bytes
/
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
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
'konami-code': './index.js',
'konami-code.min': './index.js'
},
devtool: 'sourcemap',
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'lib')
},
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules|lib)/,
use: {
loader: 'babel-loader',
options: {
presets: ['es2015']
}
}
}
]
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
include: /\.min\.js$/
}),
new CopyWebpackPlugin([
{ from: 'lib/konami-code.js', to: '../docs/konami-code.js', force: true }
])
]
};