2016-10-03 16:12:04 +00:00
|
|
|
/* global __dirname */
|
|
|
|
|
2016-10-11 14:08:21 +00:00
|
|
|
require('babel-polyfill'); // Define Object.assign() from ES6 in ES5.
|
2016-09-22 05:57:22 +00:00
|
|
|
|
2016-10-11 14:08:21 +00:00
|
|
|
var process = require('process');
|
|
|
|
|
|
|
|
var aui_css = __dirname + '/node_modules/@atlassian/aui/dist/aui/css/';
|
|
|
|
var minimize
|
2016-09-22 05:57:22 +00:00
|
|
|
= process.argv.indexOf('-p') != -1
|
|
|
|
|| process.argv.indexOf('--optimize-minimize') != -1;
|
2016-10-11 14:08:21 +00:00
|
|
|
var strophe = /\/node_modules\/strophe(js-plugins)?\/.*\.js$/;
|
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.
|
2016-10-11 14:08:21 +00:00
|
|
|
var config = {
|
2016-09-22 05:57:22 +00:00
|
|
|
devtool: 'source-map',
|
|
|
|
module: {
|
|
|
|
loaders: [{
|
|
|
|
// Transpile ES2015 (aka ES6) to ES5.
|
|
|
|
|
2016-09-28 22:07:15 +00:00
|
|
|
exclude: __dirname + '/node_modules/',
|
2016-09-22 05:57:22 +00:00
|
|
|
loader: 'babel',
|
2016-10-11 14:08:21 +00:00
|
|
|
query: {
|
|
|
|
presets: [
|
|
|
|
'es2015'
|
|
|
|
]
|
|
|
|
},
|
2016-09-22 05:57:22 +00:00
|
|
|
test: /\.js$/
|
|
|
|
},{
|
|
|
|
// Expose jquery as the globals $ and jQuery because it is expected
|
|
|
|
// to be available in such a form by multiple jitsi-meet
|
|
|
|
// dependencies including AUI, lib-jitsi-meet.
|
|
|
|
|
|
|
|
loader: 'expose?$!expose?jQuery',
|
|
|
|
test: /\/node_modules\/jquery\/.*\.js$/
|
|
|
|
},{
|
|
|
|
// Disable AMD for the Strophe.js library or its imports will fail
|
|
|
|
// at runtime.
|
|
|
|
|
|
|
|
loader: 'imports?define=>false&this=>window',
|
|
|
|
test: strophe
|
|
|
|
},{
|
|
|
|
// Allow CSS to be imported into JavaScript.
|
|
|
|
|
|
|
|
loaders: [
|
|
|
|
'style',
|
|
|
|
'css'
|
|
|
|
],
|
|
|
|
test: /\.css$/
|
|
|
|
},{
|
|
|
|
// Emit the static assets of AUI such as images that are referenced
|
|
|
|
// by CSS into the output path.
|
|
|
|
|
|
|
|
include: aui_css,
|
|
|
|
loader: 'file',
|
|
|
|
query: {
|
|
|
|
context: aui_css,
|
|
|
|
name: '[path][name].[ext]'
|
|
|
|
},
|
|
|
|
test: /\.(gif|png|svg)$/
|
2016-10-31 22:16:30 +00:00
|
|
|
},{
|
|
|
|
//Adds the ability to import json files.
|
|
|
|
loader: 'json',
|
|
|
|
exclude: __dirname + '/node_modules/',
|
|
|
|
test: /\.json$/
|
2016-09-22 05:57:22 +00:00
|
|
|
}],
|
|
|
|
noParse: [
|
|
|
|
// Do not parse the files of the Strophe.js library or at least
|
|
|
|
// parts of the properties of the Strophe global variable will be
|
|
|
|
// missing and strophejs-plugins will fail at runtime.
|
|
|
|
strophe
|
|
|
|
]
|
|
|
|
},
|
|
|
|
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: {
|
|
|
|
filename: '[name]' + (minimize ? '.min' : '') + '.js',
|
|
|
|
libraryTarget: 'umd',
|
2016-09-28 19:15:02 +00:00
|
|
|
path: __dirname + '/build',
|
2016-09-22 05:57:22 +00:00
|
|
|
sourceMapFilename: '[name].' + (minimize ? 'min' : 'js') + '.map'
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
aui:
|
|
|
|
'@atlassian/aui/dist/aui/js/aui'
|
|
|
|
+ (minimize ? '.min' : '')
|
|
|
|
+ '.js',
|
|
|
|
'aui-experimental':
|
|
|
|
'@atlassian/aui/dist/aui/js/aui-experimental'
|
|
|
|
+ (minimize ? '.min' : '')
|
|
|
|
+ '.js',
|
|
|
|
jquery: 'jquery/dist/jquery' + (minimize ? '.min' : '') + '.js',
|
|
|
|
'jQuery-Impromptu':
|
|
|
|
'jQuery-Impromptu/dist/jquery-impromptu'
|
|
|
|
+ (minimize ? '.min' : '')
|
|
|
|
+ '.js',
|
|
|
|
},
|
|
|
|
packageAlias: 'browser'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-11 14:08:21 +00:00
|
|
|
module.exports = [
|
|
|
|
|
2016-09-22 05:57:22 +00:00
|
|
|
// The Webpack configuration to bundle app.bundle.js (aka APP).
|
2016-10-11 14:08:21 +00:00
|
|
|
Object.assign({}, config, {
|
|
|
|
entry: {
|
|
|
|
'app.bundle': './app.js'
|
|
|
|
},
|
|
|
|
output: Object.assign({}, config.output, {
|
|
|
|
library: 'APP'
|
|
|
|
})
|
|
|
|
}),
|
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: {
|
|
|
|
'external_api': './modules/API/external/external_api.js'
|
|
|
|
},
|
|
|
|
output: Object.assign({}, config.output, {
|
|
|
|
library: 'JitsiMeetExternalAPI'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
];
|