forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack-shared-config.js
99 lines (92 loc) · 3.6 KB
/
webpack-shared-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
/* global __dirname */
const { execSync } = require('child_process');
const path = require('path');
const process = require('process');
const { IgnorePlugin, ProvidePlugin } = require('webpack');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const devNull = process.platform === 'win32' ? 'nul' : '/dev/null';
const commitHash = process.env.LIB_JITSI_MEET_COMMIT_HASH
|| execSync(`git rev-parse --short HEAD 2>${devNull} || echo development`)
.toString()
.trim();
module.exports = (minimize, analyzeBundle) => {
return {
// The inline-source-map is used to allow debugging the unit tests with Karma
devtool: minimize ? 'source-map' : 'inline-source-map',
resolve: {
alias: {
'jquery': require.resolve('jquery/dist/jquery.slim.min.js')
},
extensions: [ '', '.js', '.ts' ]
},
mode: minimize ? 'production' : 'development',
module: {
rules: [ {
// Version this build of the lib-jitsi-meet library.
loader: 'string-replace-loader',
options: {
flags: 'g',
replace: commitHash,
search: '{#COMMIT_HASH#}'
},
test: path.join(__dirname, 'JitsiMeetJS.ts')
}, {
// Transpile ES2015 (aka ES6) to ES5.
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
// Tell babel to avoid compiling imports into CommonJS
// so that webpack may do tree shaking.
{
modules: false,
// Specify our target browsers so no transpiling is
// done unnecessarily. For browsers not specified
// here, the ES2015+ profile will be used.
targets: {
chrome: 80,
electron: 10,
firefox: 68,
safari: 14
}
}
],
'@babel/preset-typescript'
]
},
test: /\.(js|ts)$/
} ]
},
node: {
// Allow the use of the real filename of the module being executed. By
// default Webpack does not leak path-related information and provides a
// value that is a mock (/index.js).
__filename: true
},
optimization: {
concatenateModules: minimize
},
output: {
filename: `[name]${minimize ? '.min' : ''}.js`,
sourceMapFilename: `[name].${minimize ? 'min' : 'js'}.map`
},
performance: {
hints: minimize ? 'error' : false,
maxAssetSize: 1.08 * 1024 * 1024,
maxEntrypointSize: 1.08 * 1024 * 1024
},
plugins: [
new IgnorePlugin({ resourceRegExp: /^(@xmldom\/xmldom|ws)$/ }),
analyzeBundle
&& new BundleAnalyzerPlugin({
analyzerMode: 'disabled',
generateStatsFile: true
}),
!minimize
&& new ProvidePlugin({
process: require.resolve('process/browser')
})
].filter(Boolean)
};
};