forked from thetradedesk/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.conf.js
103 lines (96 loc) · 2.75 KB
/
webpack.conf.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
const TerserPlugin = require('terser-webpack-plugin');
var prebid = require('./package.json');
var path = require('path');
var webpack = require('webpack');
var helpers = require('./gulpHelpers.js');
var { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
var argv = require('yargs').argv;
const babelConfig = require('./babelConfig.js')({disableFeatures: helpers.getDisabledFeatures()});
var plugins = [
new webpack.EnvironmentPlugin({'LiveConnectMode': null}),
];
if (argv.analyze) {
plugins.push(
new BundleAnalyzerPlugin()
)
}
module.exports = {
mode: 'production',
devtool: 'source-map',
resolve: {
modules: [
path.resolve('.'),
'node_modules'
],
},
entry: (() => {
const entry = {
'prebid-core': {
import: './src/prebid.js'
},
'debugging-standalone': {
import: './modules/debugging/standalone.js'
}
};
const selectedModules = new Set(helpers.getArgModules());
Object.entries(helpers.getModules()).forEach(([fn, mod]) => {
if (selectedModules.size === 0 || selectedModules.has(mod)) {
const moduleEntry = {
import: fn,
dependOn: 'prebid-core'
};
if (helpers.isLibrary(mod)) {
const libraryFiles = helpers.getLibraryFiles(mod);
moduleEntry.import = libraryFiles || moduleEntry.import;
}
const libraries = helpers.getParentLibraries(mod);
if (libraries.length) {
moduleEntry.dependOn = ['prebid-core'].concat(libraries);
}
entry[mod] = moduleEntry;
}
});
return entry;
})(),
output: {
chunkLoadingGlobal: prebid.globalVarName + 'Chunk',
chunkLoading: 'jsonp',
},
module: {
rules: [
{
test: /\.js$/,
exclude: path.resolve('./node_modules'), // required to prevent loader from choking non-Prebid.js node_modules
use: [
{
loader: 'babel-loader',
options: Object.assign({}, babelConfig, helpers.getAnalyticsOptions()),
}
]
},
{ // This makes sure babel-loader is ran on our intended Prebid.js modules that happen to be in node_modules
test: /\.js$/,
include: helpers.getArgModules().map(module => new RegExp('node_modules/' + module + '/')),
use: [
{
loader: 'babel-loader',
options: babelConfig
}
],
}
]
},
optimization: {
usedExports: true,
sideEffects: true,
minimizer: [
new TerserPlugin({
extractComments: false, // do not generate unhelpful LICENSE comment
terserOptions: {
module: true, // do not prepend every module with 'use strict'; allow mangling of top-level locals
}
})
]
},
plugins
};