forked from digitalbazaar/rdf-canonize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
114 lines (108 loc) · 2.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
* rdf-canonize webpack build rules.
*
* @author Digital Bazaar, Inc.
*
* Copyright 2010-2017 Digital Bazaar, Inc.
*/
const path = require('path');
const webpack = require('webpack');
const webpackMerge = require('webpack-merge');
// build multiple outputs
module.exports = [];
// custom setup for each output
// all built files will export the "rdf-canonize" library but with different
// content
const outputs = [
// core library
{
entry: [
// 'babel-polyfill' is very large, list features explicitly
'regenerator-runtime/runtime',
'core-js/fn/object/assign',
'core-js/fn/promise',
'core-js/fn/symbol',
// main lib
'./index.js'
],
filenameBase: 'rdf-canonize'
}
];
outputs.forEach((info) => {
// common to bundle and minified
const common = {
// each output uses the "jsonld" name but with different contents
entry: {
'rdf-canonize': info.entry
},
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: ['env']
}
}
}
]
},
plugins: [
//new webpack.DefinePlugin({
//})
],
// disable various node shims as jsonld handles this manually
node: {
Buffer: false,
crypto: false,
process: false,
setImmediate: false
}
};
// plain unoptimized unminified bundle
const bundle = webpackMerge(common, {
output: {
path: path.join(__dirname, 'dist'),
filename: info.filenameBase + '.js',
library: info.library || '[name]',
libraryTarget: info.libraryTarget || 'umd'
}
});
if(info.library === null) {
delete bundle.output.library;
}
if(info.libraryTarget === null) {
delete bundle.output.libraryTarget;
}
// optimized and minified bundle
const minify = webpackMerge(common, {
output: {
path: path.join(__dirname, 'dist'),
filename: info.filenameBase + '.min.js',
library: info.library || '[name]',
libraryTarget: info.libraryTarget || 'umd'
},
devtool: 'cheap-module-source-map',
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: true
},
output: {
comments: false
}
//beautify: true
})
]
});
if(info.library === null) {
delete minify.output.library;
}
if(info.libraryTarget === null) {
delete minify.output.libraryTarget;
}
module.exports.push(bundle);
module.exports.push(minify);
});