1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* global __dirname */
-
- const process = require('process');
- const { ProvidePlugin } = require('webpack');
- const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
-
-
- 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: {
- 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:
- 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: 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: 750 * 1024,
- maxEntrypointSize: 750 * 1024
- },
- plugins: [
- analyzeBundle
- && new BundleAnalyzerPlugin({
- analyzerMode: 'disabled',
- generateStatsFile: true
- }),
- !minimize
- && new ProvidePlugin({
- process: 'process/browser'
- })
- ].filter(Boolean)
- };
- };
|