2016-10-03 16:12:04 +00:00
|
|
|
/* global __dirname */
|
|
|
|
|
2017-04-03 07:48:44 +00:00
|
|
|
const process = require('process');
|
2017-10-25 13:03:56 +00:00
|
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
2017-04-03 07:48:44 +00:00
|
|
|
const webpack = require('webpack');
|
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
|
2016-12-09 01:17:49 +00:00
|
|
|
= process.env.WEBPACK_DEV_SERVER_PROXY_TARGET || 'https://beta.meet.jit.si';
|
|
|
|
|
2017-04-03 07:48:44 +00:00
|
|
|
const minimize
|
2016-11-29 02:06:23 +00:00
|
|
|
= process.argv.indexOf('-p') !== -1
|
|
|
|
|| process.argv.indexOf('--optimize-minimize') !== -1;
|
2017-10-12 23:02:29 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line camelcase
|
2017-06-16 02:08:42 +00:00
|
|
|
const node_modules = `${__dirname}/node_modules/`;
|
2017-04-03 07:48:44 +00:00
|
|
|
const plugins = [
|
2017-01-30 18:45:08 +00:00
|
|
|
new webpack.LoaderOptionsPlugin({
|
|
|
|
debug: !minimize,
|
2017-06-16 02:08:42 +00:00
|
|
|
minimize
|
2017-01-30 18:45:08 +00:00
|
|
|
})
|
2016-11-24 05:18:24 +00:00
|
|
|
];
|
2016-09-22 05:57:22 +00:00
|
|
|
|
2016-11-24 05:18:24 +00:00
|
|
|
if (minimize) {
|
|
|
|
// XXX Webpack's command line argument -p is not enough. Further
|
|
|
|
// optimizations are made possible by the use of DefinePlugin and NODE_ENV
|
|
|
|
// with value 'production'. For example, React takes advantage of these.
|
|
|
|
plugins.push(new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify('production')
|
|
|
|
}
|
|
|
|
}));
|
2017-09-08 01:06:34 +00:00
|
|
|
plugins.push(new webpack.optimize.ModuleConcatenationPlugin());
|
2017-10-25 13:03:56 +00:00
|
|
|
plugins.push(new UglifyJsPlugin({
|
|
|
|
cache: true,
|
2017-01-30 18:45:08 +00:00
|
|
|
extractComments: true,
|
2017-10-25 13:03:56 +00:00
|
|
|
parallel: true,
|
2017-02-07 21:44:37 +00:00
|
|
|
sourceMap: true
|
|
|
|
}));
|
2016-11-24 05:18:24 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 05:57:22 +00:00
|
|
|
// The base Webpack configuration to bundle the JavaScript artifacts of
|
|
|
|
// jitsi-meet such as app.bundle.js and external_api.js.
|
2017-04-03 07:48:44 +00:00
|
|
|
const config = {
|
2016-12-09 01:17:49 +00:00
|
|
|
devServer: {
|
|
|
|
https: true,
|
|
|
|
inline: true,
|
|
|
|
proxy: {
|
|
|
|
'/': {
|
|
|
|
bypass: devServerProxyBypass,
|
|
|
|
secure: false,
|
|
|
|
target: devServerProxyTarget
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-09-22 05:57:22 +00:00
|
|
|
devtool: 'source-map',
|
|
|
|
module: {
|
2017-01-30 18:45:08 +00:00
|
|
|
rules: [ {
|
2016-11-22 02:26:50 +00:00
|
|
|
// Transpile ES2015 (aka ES6) to ES5. Accept the JSX syntax by React
|
|
|
|
// as well.
|
2017-10-16 20:37:13 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
exclude: node_modules, // eslint-disable-line camelcase
|
2017-02-07 21:44:37 +00:00
|
|
|
loader: 'babel-loader',
|
2017-01-30 18:45:08 +00:00
|
|
|
options: {
|
2016-11-24 06:42:07 +00:00
|
|
|
// XXX The require.resolve bellow solves failures to locate the
|
|
|
|
// presets when lib-jitsi-meet, for example, is npm linked in
|
|
|
|
// jitsi-meet. The require.resolve, of course, mandates the use
|
|
|
|
// of the prefix babel-preset- in the preset names.
|
2016-10-11 14:08:21 +00:00
|
|
|
presets: [
|
2017-01-30 18:45:08 +00:00
|
|
|
[
|
2017-10-27 16:58:38 +00:00
|
|
|
require.resolve('babel-preset-env'),
|
2017-01-30 18:45:08 +00:00
|
|
|
|
|
|
|
// Tell babel to avoid compiling imports into CommonJS
|
|
|
|
// so that webpack may do tree shaking.
|
|
|
|
{ modules: false }
|
|
|
|
],
|
|
|
|
require.resolve('babel-preset-react'),
|
|
|
|
require.resolve('babel-preset-stage-1')
|
|
|
|
]
|
2016-10-11 14:08:21 +00:00
|
|
|
},
|
2016-11-22 02:26:50 +00:00
|
|
|
test: /\.jsx?$/
|
2016-11-29 02:06:23 +00:00
|
|
|
}, {
|
2016-09-22 05:57:22 +00:00
|
|
|
// Expose jquery as the globals $ and jQuery because it is expected
|
|
|
|
// to be available in such a form by multiple jitsi-meet
|
2017-11-28 02:29:00 +00:00
|
|
|
// dependencies including lib-jitsi-meet.
|
2016-09-22 05:57:22 +00:00
|
|
|
|
2017-02-07 21:44:37 +00:00
|
|
|
loader: 'expose-loader?$!expose-loader?jQuery',
|
2016-09-22 05:57:22 +00:00
|
|
|
test: /\/node_modules\/jquery\/.*\.js$/
|
2017-02-06 13:32:05 +00:00
|
|
|
}, {
|
|
|
|
// Set scope to window for URL polyfill.
|
|
|
|
|
|
|
|
loader: 'imports-loader?this=>window',
|
|
|
|
test: /\/node_modules\/url-polyfill\/.*\.js$/
|
2016-11-29 02:06:23 +00:00
|
|
|
}, {
|
2016-09-22 05:57:22 +00:00
|
|
|
// Allow CSS to be imported into JavaScript.
|
|
|
|
|
2017-01-30 18:45:08 +00:00
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
2017-02-07 21:44:37 +00:00
|
|
|
'style-loader',
|
|
|
|
'css-loader'
|
2017-01-30 18:45:08 +00:00
|
|
|
]
|
2017-10-17 19:08:32 +00:00
|
|
|
} ]
|
2016-09-22 05:57:22 +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
|
|
|
|
},
|
|
|
|
output: {
|
2017-06-16 02:08:42 +00:00
|
|
|
filename: `[name]${minimize ? '.min' : ''}.js`,
|
|
|
|
path: `${__dirname}/build`,
|
2016-12-09 01:17:49 +00:00
|
|
|
publicPath: '/libs/',
|
2017-06-16 02:08:42 +00:00
|
|
|
sourceMapFilename: `[name].${minimize ? 'min' : 'js'}.map`
|
2016-09-22 05:57:22 +00:00
|
|
|
},
|
2017-06-16 02:08:42 +00:00
|
|
|
plugins,
|
2016-09-22 05:57:22 +00:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2017-06-16 02:08:42 +00:00
|
|
|
jquery: `jquery/dist/jquery${minimize ? '.min' : ''}.js`
|
2016-09-22 05:57:22 +00:00
|
|
|
},
|
2017-01-30 18:45:08 +00:00
|
|
|
aliasFields: [
|
|
|
|
'browser'
|
|
|
|
],
|
|
|
|
extensions: [
|
|
|
|
'.web.js',
|
|
|
|
|
|
|
|
// Webpack defaults:
|
|
|
|
'.js',
|
|
|
|
'.json'
|
|
|
|
]
|
2016-09-22 05:57:22 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-06-16 03:47:04 +00:00
|
|
|
module.exports = [
|
2016-10-11 14:08:21 +00:00
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
2017-04-04 19:23:19 +00:00
|
|
|
'app.bundle': [
|
2017-06-16 03:47:04 +00:00
|
|
|
|
2018-03-23 16:37:04 +00:00
|
|
|
// babel-polyfill and fetch polyfill are required for IE11.
|
2017-04-04 19:23:19 +00:00
|
|
|
'babel-polyfill',
|
2018-03-23 16:37:04 +00:00
|
|
|
'whatwg-fetch',
|
2017-04-04 19:23:19 +00:00
|
|
|
'./app.js'
|
2017-06-16 03:47:04 +00:00
|
|
|
],
|
2016-09-22 05:57:22 +00:00
|
|
|
|
2017-01-30 18:45:08 +00:00
|
|
|
'device_selection_popup_bundle':
|
2017-06-16 03:47:04 +00:00
|
|
|
'./react/features/device-selection/popup.js',
|
2017-01-30 18:45:08 +00:00
|
|
|
|
2017-08-04 08:15:11 +00:00
|
|
|
'alwaysontop':
|
|
|
|
'./react/features/always-on-top/index.js',
|
|
|
|
|
2018-02-13 19:46:47 +00:00
|
|
|
'dial_in_info_bundle': [
|
|
|
|
|
|
|
|
// babel-polyfill and fetch polyfill are required for IE11.
|
|
|
|
'babel-polyfill',
|
|
|
|
'whatwg-fetch',
|
|
|
|
|
|
|
|
// atlaskit does not support React 16 prop-types
|
|
|
|
'./react/features/base/react/prop-types-polyfill.js',
|
|
|
|
|
|
|
|
'./react/features/invite/components/dial-in-info-page'
|
|
|
|
],
|
|
|
|
|
2017-04-11 23:27:43 +00:00
|
|
|
'do_external_connect':
|
|
|
|
'./connection_optimization/do_external_connect.js'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
2016-09-22 05:57:22 +00:00
|
|
|
// The Webpack configuration to bundle external_api.js (aka
|
|
|
|
// JitsiMeetExternalAPI).
|
2016-10-11 14:08:21 +00:00
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
2017-11-08 17:31:34 +00:00
|
|
|
'external_api': [
|
|
|
|
|
|
|
|
// XXX Required by at least IE11 at the time of this writing.
|
|
|
|
'babel-polyfill',
|
|
|
|
'./modules/API/external/index.js'
|
|
|
|
]
|
2016-10-11 14:08:21 +00:00
|
|
|
},
|
|
|
|
output: Object.assign({}, config.output, {
|
2017-06-16 03:47:04 +00:00
|
|
|
library: 'JitsiMeetExternalAPI',
|
|
|
|
libraryTarget: 'umd'
|
2016-10-11 14:08:21 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
];
|
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 }) {
|
2017-09-07 14:34:53 +00:00
|
|
|
if (path.startsWith('/css/') || path.startsWith('/doc/')) {
|
2016-12-09 01:17:49 +00:00
|
|
|
return path;
|
|
|
|
}
|
2017-06-16 02:08:42 +00:00
|
|
|
|
|
|
|
const configs = module.exports;
|
|
|
|
|
2017-10-16 20:37:13 +00:00
|
|
|
/* eslint-disable array-callback-return, indent */
|
2017-10-02 23:08:07 +00:00
|
|
|
|
2017-06-16 02:08:42 +00:00
|
|
|
if ((Array.isArray(configs) ? configs : Array(configs)).some(c => {
|
2017-10-16 20:37:13 +00:00
|
|
|
if (path.startsWith(c.output.publicPath)) {
|
2016-12-09 01:17:49 +00:00
|
|
|
if (!minimize) {
|
|
|
|
// Since webpack-dev-server is serving non-minimized
|
|
|
|
// artifacts, serve them even if the minimized ones are
|
|
|
|
// requested.
|
2017-06-16 02:08:42 +00:00
|
|
|
Object.keys(c.entry).some(e => {
|
|
|
|
const name = `${e}.min.js`;
|
2016-12-09 01:17:49 +00:00
|
|
|
|
2017-10-16 20:37:13 +00:00
|
|
|
if (path.indexOf(name) !== -1) {
|
|
|
|
// eslint-disable-next-line no-param-reassign
|
|
|
|
path = path.replace(name, `${e}.js`);
|
2016-12-09 01:17:49 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
})) {
|
2017-10-16 20:37:13 +00:00
|
|
|
return path;
|
2016-12-09 01:17:49 +00:00
|
|
|
}
|
2017-10-02 23:08:07 +00:00
|
|
|
|
2017-10-16 20:37:13 +00:00
|
|
|
/* eslint-enable array-callback-return, indent */
|
2016-12-09 01:17:49 +00:00
|
|
|
}
|