123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* global __dirname */
-
- const process = require('process');
- const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
-
- const analyzeBundle = process.argv.indexOf('--analyze-bundle') !== -1;
-
- const minimize
- = process.argv.indexOf('-p') !== -1
- || process.argv.indexOf('--optimize-minimize') !== -1;
-
- const config = {
- // The inline-source-map is used to allow debugging the unit tests with Karma
- devtool: minimize ? 'source-map' : 'inline-source-map',
- mode: minimize ? 'production' : 'development',
- module: {
- rules: [ {
- // Version this build of the lib-jitsi-meet library.
-
- loader: 'string-replace-loader',
- options: {
- flags: 'g',
- replace:
- process.env.LIB_JITSI_MEET_COMMIT_HASH || 'development',
- search: '{#COMMIT_HASH#}'
- },
- test: `${__dirname}/JitsiMeetJS.js`
- }, {
- // Transpile ES2015 (aka ES6) to ES5.
-
- exclude: [
- new RegExp(`${__dirname}/node_modules/(?!@jitsi/js-utils)`)
- ],
- 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: 58,
- electron: 2,
- firefox: 54,
- safari: 11
- }
- }
- ],
- '@babel/preset-flow'
- ],
- plugins: [
- '@babel/plugin-transform-flow-strip-types',
- '@babel/plugin-proposal-class-properties',
- '@babel/plugin-proposal-export-namespace-from'
- ]
- },
- test: /\.js$/
- } ]
- },
- 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`,
- path: process.cwd(),
- sourceMapFilename: `[name].${minimize ? 'min' : 'js'}.map`
- },
- performance: {
- hints: minimize ? 'error' : false,
- maxAssetSize: 750 * 1024,
- maxEntrypointSize: 750 * 1024
- },
- plugins: [
- analyzeBundle
- && new BundleAnalyzerPlugin({
- analyzerMode: 'disabled',
- generateStatsFile: true
- })
- ].filter(Boolean)
- };
-
- module.exports = [
- Object.assign({}, config, {
- entry: {
- 'lib-jitsi-meet': './index.js'
- },
- output: Object.assign({}, config.output, {
- library: 'JitsiMeetJS',
- libraryTarget: 'umd'
- })
- }),
- {
- entry: {
- worker: './modules/e2ee/Worker.js'
- },
- mode: 'production',
- output: {
- filename: 'lib-jitsi-meet.e2ee-worker.js',
- path: process.cwd()
- },
- optimization: {
- minimize: false
- }
- }
- ];
|