forked from Palindrom/JSONPatcherProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
37 lines (36 loc) · 862 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
const webpack = require('webpack');
const version = require('./package.json').version;
const banner = `JSONPatcherProxy version: ${version}`
module.exports = [
{
entry: './src/jsonpatcherproxy.js',
output: {
filename: 'jsonpatcherproxy.js',
libraryExport: 'default',
library: 'JSONPatcherProxy',
libraryTarget: 'var'
},
mode: 'production',
optimization: {
minimize: false
},
resolve: {
extensions: ['.js']
},
plugins: [new webpack.BannerPlugin(banner)]
},
{
entry: './src/jsonpatcherproxy.js',
output: {
filename: 'jsonpatcherproxy.min.js',
libraryExport: 'default',
library: 'JSONPatcherProxy',
libraryTarget: 'var'
},
mode: 'production',
resolve: {
extensions: ['.js']
},
plugins: [new webpack.BannerPlugin(banner)]
}
];