forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.conf.js
95 lines (92 loc) · 2.53 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
var prebid = require('./package.json');
var StringReplacePlugin = require('string-replace-webpack-plugin');
var path = require('path');
var webpack = require('webpack');
var helpers = require('./gulpHelpers');
var RequireEnsureWithoutJsonp = require('./plugins/RequireEnsureWithoutJsonp.js');
// list of module names to never include in the common bundle chunk
var neverBundle = [
'AnalyticsAdapter.js'
];
module.exports = {
devtool: 'source-map',
resolve: {
modules: [
path.resolve('.'),
'node_modules'
],
},
output: {
jsonpFunction: prebid.globalVarName+"Chunk"
},
module: {
rules: [
{
test: /\.js$/,
exclude: path.resolve('./node_modules'), // required to prevent loader from choking non-Prebid.js node_modules
use: [
{
loader: 'babel-loader',
}
]
},
{ // 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',
}
],
},
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.md$/,
loader: 'ignore-loader'
},
{
test: /constants.json$/,
include: /(src)/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /%%REPO_AND_VERSION%%/g,
replacement: function (match, p1, offset, string) {
return `${prebid.repository.url.split('/')[3]}_prebid_${prebid.version}`;
}
}
]
})
},
{
test: /\.js$/,
include: /(src|test|modules|integrationExamples)/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /\$\$PREBID_GLOBAL\$\$/g,
replacement: function (match, p1, offset, string) {
return prebid.globalVarName;
}
}
]
})
}
]
},
plugins: [
new StringReplacePlugin(),
new RequireEnsureWithoutJsonp(),
// this plugin must be last so it can be easily removed for karma unit tests
new webpack.optimize.CommonsChunkPlugin({
name: 'prebid',
filename: 'prebid-core.js',
minChunks: function(module, count) {
return !(count < 2 || neverBundle.includes(path.basename(module.resource)))
}
})
]
};