2016-10-03 16:12:04 +00:00
|
|
|
/* global __dirname */
|
|
|
|
|
2020-05-28 11:28:04 +00:00
|
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin');
|
2021-10-07 08:39:03 +00:00
|
|
|
const fs = require('fs');
|
2022-07-20 12:31:17 +00:00
|
|
|
const { join, resolve } = require('path');
|
2017-04-03 07:48:44 +00:00
|
|
|
const process = require('process');
|
2021-03-04 14:20:27 +00:00
|
|
|
const webpack = require('webpack');
|
2019-09-06 13:33:04 +00:00
|
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
2016-09-22 05:57:22 +00:00
|
|
|
|
2016-12-09 01:17:49 +00:00
|
|
|
/**
|
|
|
|
* The URL of the Jitsi Meet deployment to be proxy to in the context of
|
|
|
|
* development with webpack-dev-server.
|
|
|
|
*/
|
2017-04-03 07:48:44 +00:00
|
|
|
const devServerProxyTarget
|
2019-09-13 09:42:32 +00:00
|
|
|
= process.env.WEBPACK_DEV_SERVER_PROXY_TARGET || 'https://alpha.jitsi.net';
|
2016-12-09 01:17:49 +00:00
|
|
|
|
2019-09-06 14:08:57 +00:00
|
|
|
/**
|
|
|
|
* Build a Performance configuration object for the given size.
|
|
|
|
* See: https://webpack.js.org/configuration/performance/
|
2021-10-07 08:39:03 +00:00
|
|
|
*
|
|
|
|
* @param {Object} options - options for the bundles configuration.
|
|
|
|
* @param {boolean} options.analyzeBundle - whether the bundle needs to be analyzed for size.
|
2022-09-19 13:13:42 +00:00
|
|
|
* @param {boolean} options.isProduction - whether this is a production build or not.
|
2021-10-07 08:39:03 +00:00
|
|
|
* @param {number} size - the size limit to apply.
|
|
|
|
* @returns {Object} a performance hints object.
|
2019-09-06 14:08:57 +00:00
|
|
|
*/
|
2021-10-07 08:39:03 +00:00
|
|
|
function getPerformanceHints(options, size) {
|
2022-09-19 13:13:42 +00:00
|
|
|
const { analyzeBundle, isProduction } = options;
|
2021-10-07 08:39:03 +00:00
|
|
|
|
2019-09-06 14:08:57 +00:00
|
|
|
return {
|
2022-09-19 13:13:42 +00:00
|
|
|
hints: isProduction && !analyzeBundle ? 'error' : false,
|
2019-09-06 14:08:57 +00:00
|
|
|
maxAssetSize: size,
|
|
|
|
maxEntrypointSize: size
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-05-07 13:24:32 +00:00
|
|
|
/**
|
|
|
|
* Build a BundleAnalyzerPlugin plugin instance for the given bundle name.
|
2021-10-07 08:39:03 +00:00
|
|
|
*
|
|
|
|
* @param {boolean} analyzeBundle - whether the bundle needs to be analyzed for size.
|
|
|
|
* @param {string} name - the name of the bundle.
|
|
|
|
* @returns {Array} a configured list of plugins.
|
2021-05-07 13:24:32 +00:00
|
|
|
*/
|
2021-10-07 08:39:03 +00:00
|
|
|
function getBundleAnalyzerPlugin(analyzeBundle, name) {
|
2021-05-07 13:24:32 +00:00
|
|
|
if (!analyzeBundle) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [ new BundleAnalyzerPlugin({
|
|
|
|
analyzerMode: 'disabled',
|
|
|
|
generateStatsFile: true,
|
|
|
|
statsFilename: `${name}-stats.json`
|
|
|
|
}) ];
|
|
|
|
}
|
|
|
|
|
2016-12-09 01:17:49 +00:00
|
|
|
/**
|
|
|
|
* Determines whether a specific (HTTP) request is to bypass the proxy of
|
|
|
|
* webpack-dev-server (i.e. is to be handled by the proxy target) and, if not,
|
|
|
|
* which local file is to be served in response to the request.
|
|
|
|
*
|
|
|
|
* @param {Object} request - The (HTTP) request received by the proxy.
|
|
|
|
* @returns {string|undefined} If the request is to be served by the proxy
|
|
|
|
* target, undefined; otherwise, the path to the local file to be served.
|
|
|
|
*/
|
2017-06-16 02:08:42 +00:00
|
|
|
function devServerProxyBypass({ path }) {
|
2021-10-07 08:39:03 +00:00
|
|
|
if (path.startsWith('/css/')
|
|
|
|
|| path.startsWith('/doc/')
|
2020-06-08 17:33:40 +00:00
|
|
|
|| path.startsWith('/fonts/')
|
|
|
|
|| path.startsWith('/images/')
|
2020-05-19 09:58:21 +00:00
|
|
|
|| path.startsWith('/lang/')
|
2019-07-23 20:56:05 +00:00
|
|
|
|| path.startsWith('/sounds/')
|
2019-10-04 10:55:18 +00:00
|
|
|
|| path.startsWith('/static/')
|
2019-11-06 09:25:08 +00:00
|
|
|
|| path.endsWith('.wasm')) {
|
2020-06-08 17:33:40 +00:00
|
|
|
|
2016-12-09 01:17:49 +00:00
|
|
|
return path;
|
|
|
|
}
|
2017-06-16 02:08:42 +00:00
|
|
|
|
2021-10-07 08:39:03 +00:00
|
|
|
if (path.startsWith('/libs/')) {
|
|
|
|
if (path.endsWith('.min.js') && !fs.existsSync(join(process.cwd(), path))) {
|
|
|
|
return path.replace('.min.js', '.js');
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The base Webpack configuration to bundle the JavaScript artifacts of
|
|
|
|
* jitsi-meet such as app.bundle.js and external_api.js.
|
|
|
|
*
|
|
|
|
* @param {Object} options - options for the bundles configuration.
|
|
|
|
* @param {boolean} options.detectCircularDeps - whether to detect circular dependencies or not.
|
2022-09-19 13:13:42 +00:00
|
|
|
* @param {boolean} options.isProduction - whether this is a production build or not.
|
2021-10-07 08:39:03 +00:00
|
|
|
* @returns {Object} the base config object.
|
|
|
|
*/
|
|
|
|
function getConfig(options = {}) {
|
2022-09-19 13:13:42 +00:00
|
|
|
const { detectCircularDeps, isProduction } = options;
|
2021-10-07 08:39:03 +00:00
|
|
|
|
|
|
|
return {
|
2022-09-19 13:13:42 +00:00
|
|
|
devtool: isProduction ? 'source-map' : 'eval-source-map',
|
|
|
|
mode: isProduction ? 'production' : 'development',
|
2021-10-07 08:39:03 +00:00
|
|
|
module: {
|
|
|
|
rules: [ {
|
|
|
|
// Transpile ES2015 (aka ES6) to ES5. Accept the JSX syntax by React
|
|
|
|
// as well.
|
2017-06-16 02:08:42 +00:00
|
|
|
|
2021-10-07 08:39:03 +00:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
// Avoid loading babel.config.js, since we only use it for React Native.
|
|
|
|
configFile: false,
|
2017-10-02 23:08:07 +00:00
|
|
|
|
2022-08-30 14:21:58 +00:00
|
|
|
// XXX The require.resolve below solves failures to locate the
|
2021-10-07 08:39:03 +00:00
|
|
|
// presets when lib-jitsi-meet, for example, is npm linked in
|
|
|
|
// jitsi-meet.
|
|
|
|
plugins: [
|
2021-11-04 13:49:43 +00:00
|
|
|
require.resolve('@babel/plugin-proposal-export-default-from')
|
2021-10-07 08:39:03 +00:00
|
|
|
],
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
require.resolve('@babel/preset-env'),
|
|
|
|
|
|
|
|
// Tell babel to avoid compiling imports into CommonJS
|
|
|
|
// so that webpack may do tree shaking.
|
|
|
|
{
|
|
|
|
modules: false,
|
2016-12-09 01:17:49 +00:00
|
|
|
|
2021-10-07 08:39:03 +00:00
|
|
|
// Specify our target browsers so no transpiling is
|
|
|
|
// done unnecessarily. For browsers not specified
|
|
|
|
// here, the ES2015+ profile will be used.
|
|
|
|
targets: {
|
2021-11-04 13:49:43 +00:00
|
|
|
chrome: 80,
|
|
|
|
electron: 10,
|
|
|
|
firefox: 68,
|
|
|
|
safari: 14
|
2021-10-07 08:39:03 +00:00
|
|
|
}
|
2016-12-09 01:17:49 +00:00
|
|
|
|
|
|
|
}
|
2021-10-07 08:39:03 +00:00
|
|
|
],
|
|
|
|
require.resolve('@babel/preset-flow'),
|
|
|
|
require.resolve('@babel/preset-react')
|
|
|
|
]
|
|
|
|
},
|
|
|
|
test: /\.jsx?$/
|
|
|
|
}, {
|
|
|
|
// Allow CSS to be imported into JavaScript.
|
|
|
|
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'style-loader',
|
|
|
|
'css-loader'
|
|
|
|
]
|
|
|
|
}, {
|
|
|
|
test: /\/node_modules\/@atlaskit\/modal-dialog\/.*\.js$/,
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'react-focus-lock': `${__dirname}/react/features/base/util/react-focus-lock-wrapper.js`,
|
|
|
|
'../styled/Modal': `${__dirname}/react/features/base/dialog/components/web/ThemedDialog.js`
|
2016-12-09 01:17:49 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-07 08:39:03 +00:00
|
|
|
}, {
|
|
|
|
test: /\/react\/features\/base\/util\/react-focus-lock-wrapper.js$/,
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'react-focus-lock': `${__dirname}/node_modules/react-focus-lock`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
test: /\.svg$/,
|
|
|
|
use: [ {
|
|
|
|
loader: '@svgr/webpack',
|
|
|
|
options: {
|
|
|
|
dimensions: false,
|
|
|
|
expandProps: 'start'
|
|
|
|
}
|
|
|
|
} ]
|
2022-04-08 12:24:58 +00:00
|
|
|
}, {
|
|
|
|
test: /\.tsx?$/,
|
|
|
|
exclude: /node_modules/,
|
2022-09-19 13:14:39 +00:00
|
|
|
loader: 'ts-loader',
|
|
|
|
options: {
|
2022-10-18 16:21:48 +00:00
|
|
|
configFile: 'tsconfig.web.json',
|
|
|
|
transpileOnly: !isProduction // Skip type checking for dev builds.,
|
2022-09-19 13:14:39 +00:00
|
|
|
}
|
2021-10-07 08:39:03 +00:00
|
|
|
} ]
|
|
|
|
},
|
|
|
|
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: {
|
2022-09-19 13:13:42 +00:00
|
|
|
concatenateModules: isProduction,
|
|
|
|
minimize: isProduction
|
2021-10-07 08:39:03 +00:00
|
|
|
},
|
|
|
|
output: {
|
2022-09-19 13:13:42 +00:00
|
|
|
filename: `[name]${isProduction ? '.min' : ''}.js`,
|
2021-10-07 08:39:03 +00:00
|
|
|
path: `${__dirname}/build`,
|
|
|
|
publicPath: '/libs/',
|
2021-10-22 10:29:43 +00:00
|
|
|
sourceMapFilename: '[file].map'
|
2021-10-07 08:39:03 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
detectCircularDeps
|
|
|
|
&& new CircularDependencyPlugin({
|
|
|
|
allowAsyncCycles: false,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
failOnError: false
|
|
|
|
})
|
|
|
|
].filter(Boolean),
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'focus-visible': 'focus-visible/dist/focus-visible.min.js'
|
|
|
|
},
|
|
|
|
aliasFields: [
|
|
|
|
'browser'
|
|
|
|
],
|
|
|
|
extensions: [
|
|
|
|
'.web.js',
|
2022-06-06 12:25:36 +00:00
|
|
|
'.web.ts',
|
2022-11-11 08:20:33 +00:00
|
|
|
'.web.tsx',
|
2017-10-02 23:08:07 +00:00
|
|
|
|
2022-04-08 12:24:58 +00:00
|
|
|
// Typescript:
|
|
|
|
'.tsx',
|
|
|
|
'.ts',
|
|
|
|
|
2021-10-07 08:39:03 +00:00
|
|
|
// Webpack defaults:
|
|
|
|
'.js',
|
|
|
|
'.json'
|
|
|
|
],
|
|
|
|
fallback: {
|
|
|
|
// Provide some empty Node modules (required by AtlasKit, olm).
|
|
|
|
crypto: false,
|
|
|
|
fs: false,
|
|
|
|
path: false,
|
|
|
|
process: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-12-09 01:17:49 +00:00
|
|
|
}
|
2021-10-07 08:39:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to build the dev server config. It's necessary to split it in
|
|
|
|
* Webpack 5 because only one devServer entry is supported, so we attach it to
|
|
|
|
* the main bundle.
|
|
|
|
*
|
2021-10-22 10:29:43 +00:00
|
|
|
|
2021-10-07 08:39:03 +00:00
|
|
|
* @returns {Object} the dev server configuration.
|
|
|
|
*/
|
|
|
|
function getDevServerConfig() {
|
|
|
|
return {
|
2021-10-08 07:13:50 +00:00
|
|
|
client: {
|
|
|
|
overlay: {
|
|
|
|
errors: true,
|
|
|
|
warnings: false
|
|
|
|
}
|
|
|
|
},
|
2021-10-07 08:39:03 +00:00
|
|
|
host: '127.0.0.1',
|
2021-10-22 10:29:43 +00:00
|
|
|
hot: true,
|
2021-10-07 08:39:03 +00:00
|
|
|
proxy: {
|
|
|
|
'/': {
|
|
|
|
bypass: devServerProxyBypass,
|
|
|
|
secure: false,
|
|
|
|
target: devServerProxyTarget,
|
|
|
|
headers: {
|
|
|
|
'Host': new URL(devServerProxyTarget).host
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2022-12-02 15:15:56 +00:00
|
|
|
server: process.env.CODESPACES ? 'http' : 'https',
|
2021-10-07 08:39:03 +00:00
|
|
|
static: {
|
|
|
|
directory: process.cwd()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = (_env, argv) => {
|
|
|
|
const analyzeBundle = Boolean(process.env.ANALYZE_BUNDLE);
|
|
|
|
const mode = typeof argv.mode === 'undefined' ? 'production' : argv.mode;
|
|
|
|
const isProduction = mode === 'production';
|
|
|
|
const configOptions = {
|
2022-06-24 09:23:58 +00:00
|
|
|
detectCircularDeps: Boolean(process.env.DETECT_CIRCULAR_DEPS),
|
2022-09-19 13:13:42 +00:00
|
|
|
isProduction
|
2021-10-07 08:39:03 +00:00
|
|
|
};
|
|
|
|
const config = getConfig(configOptions);
|
|
|
|
const perfHintOptions = {
|
|
|
|
analyzeBundle,
|
2022-09-19 13:13:42 +00:00
|
|
|
isProduction
|
2021-10-07 08:39:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return [
|
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
|
|
|
'app.bundle': './app.js'
|
|
|
|
},
|
|
|
|
devServer: isProduction ? {} : getDevServerConfig(),
|
|
|
|
plugins: [
|
|
|
|
...config.plugins,
|
|
|
|
...getBundleAnalyzerPlugin(analyzeBundle, 'app'),
|
2021-10-18 14:17:14 +00:00
|
|
|
new webpack.IgnorePlugin({
|
|
|
|
resourceRegExp: /^canvas$/,
|
|
|
|
contextRegExp: /resemblejs$/
|
|
|
|
}),
|
2021-10-07 08:39:03 +00:00
|
|
|
new webpack.IgnorePlugin({
|
|
|
|
resourceRegExp: /^\.\/locale$/,
|
|
|
|
contextRegExp: /moment$/
|
|
|
|
}),
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
process: 'process/browser'
|
|
|
|
})
|
|
|
|
],
|
2022-09-30 14:50:45 +00:00
|
|
|
|
|
|
|
performance: getPerformanceHints(perfHintOptions, 5 * 1024 * 1024)
|
|
|
|
|
2021-10-07 08:39:03 +00:00
|
|
|
}),
|
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
|
|
|
'alwaysontop': './react/features/always-on-top/index.js'
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...config.plugins,
|
|
|
|
...getBundleAnalyzerPlugin(analyzeBundle, 'alwaysontop')
|
|
|
|
],
|
|
|
|
performance: getPerformanceHints(perfHintOptions, 800 * 1024)
|
|
|
|
}),
|
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
2022-09-06 12:51:50 +00:00
|
|
|
'analytics-ga': './react/features/analytics/handlers/GoogleAnalyticsHandler.ts'
|
2021-10-07 08:39:03 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...config.plugins,
|
|
|
|
...getBundleAnalyzerPlugin(analyzeBundle, 'analytics-ga')
|
|
|
|
],
|
|
|
|
performance: getPerformanceHints(perfHintOptions, 5 * 1024)
|
|
|
|
}),
|
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
|
|
|
'close3': './static/close3.js'
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...config.plugins,
|
|
|
|
...getBundleAnalyzerPlugin(analyzeBundle, 'close3')
|
|
|
|
],
|
|
|
|
performance: getPerformanceHints(perfHintOptions, 128 * 1024)
|
|
|
|
}),
|
|
|
|
|
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
|
|
|
'external_api': './modules/API/external/index.js'
|
|
|
|
},
|
|
|
|
output: Object.assign({}, config.output, {
|
|
|
|
library: 'JitsiMeetExternalAPI',
|
|
|
|
libraryTarget: 'umd'
|
|
|
|
}),
|
|
|
|
plugins: [
|
|
|
|
...config.plugins,
|
|
|
|
...getBundleAnalyzerPlugin(analyzeBundle, 'external_api')
|
|
|
|
],
|
|
|
|
performance: getPerformanceHints(perfHintOptions, 35 * 1024)
|
2021-11-17 14:33:03 +00:00
|
|
|
}),
|
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
2022-05-06 12:41:08 +00:00
|
|
|
'face-landmarks-worker': './react/features/face-landmarks/faceLandmarksWorker.ts'
|
2021-11-17 14:33:03 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...config.plugins,
|
2022-04-06 09:10:31 +00:00
|
|
|
...getBundleAnalyzerPlugin(analyzeBundle, 'face-landmarks-worker')
|
2021-11-17 14:33:03 +00:00
|
|
|
],
|
2022-05-06 12:41:08 +00:00
|
|
|
performance: getPerformanceHints(perfHintOptions, 1024 * 1024 * 2)
|
2022-07-20 12:31:17 +00:00
|
|
|
}),
|
|
|
|
Object.assign({}, config, {
|
|
|
|
/**
|
|
|
|
* The NoiseSuppressorWorklet is loaded in an audio worklet which doesn't have the same
|
|
|
|
* context as a normal window, (e.g. self/window is not defined).
|
|
|
|
* While running a production build webpack's boilerplate code doesn't introduce any
|
|
|
|
* audio worklet "unfriendly" code however when running the dev server, hot module replacement
|
2022-08-30 14:21:58 +00:00
|
|
|
* and live reload add javascript code that can't be ran by the worklet, so we explicitly ignore
|
2022-07-20 12:31:17 +00:00
|
|
|
* those parts with the null-loader.
|
|
|
|
* The dev server also expects a `self` global object that's not available in the `AudioWorkletGlobalScope`,
|
|
|
|
* so we replace it.
|
|
|
|
*/
|
|
|
|
entry: {
|
|
|
|
'noise-suppressor-worklet':
|
|
|
|
'./react/features/stream-effects/noise-suppression/NoiseSuppressorWorklet.ts'
|
|
|
|
},
|
|
|
|
|
|
|
|
module: { rules: [
|
|
|
|
...config.module.rules,
|
|
|
|
{
|
|
|
|
test: resolve(__dirname, 'node_modules/webpack-dev-server/client'),
|
|
|
|
loader: 'null-loader'
|
|
|
|
}
|
|
|
|
] },
|
|
|
|
plugins: [
|
|
|
|
],
|
|
|
|
performance: getPerformanceHints(perfHintOptions, 200 * 1024),
|
|
|
|
|
|
|
|
output: {
|
|
|
|
...config.output,
|
|
|
|
|
|
|
|
globalObject: 'AudioWorkletGlobalScope'
|
|
|
|
}
|
2021-10-07 08:39:03 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|