-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
60 lines (56 loc) · 1.47 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
const path = require('path')
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
const webpack = require('webpack')
const env = process.env.WEBPACK_ENV
const outputfilename = "fairplay"
const banner = ''
// /**
// * Copyright (c) 2019, Neap Pty Ltd.
// * All rights reserved.
// *
// * This source code is licensed under the BSD-style license found in the
// * LICENSE file in the root directory of this source tree.
// */
// `
const { plugins, outputfile } = env == "build"
? {
plugins: [
new UglifyJSPlugin(),
new webpack.BannerPlugin({ banner })
],
outputfile: `${outputfilename}.min.js`
}
: {
plugins: [
new webpack.BannerPlugin({ banner})
],
outputfile: `${outputfilename}.js`
}
module.exports = {
entry: [
`./src/app.js`
],
output: {
path: __dirname + '/dist',
filename: outputfile,
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [{
loader: "babel-loader",
exclude: [
path.resolve(__dirname, "node_modules")
],
// Only run `.js` and `.jsx` files through Babel
test: /\.jsx?$/,
// Options to configure babel with
query: {
plugins: ['transform-runtime'],
presets: ['es2015'],
}
}, ]
},
devtool: 'source-map',
plugins: plugins
}