4d06228d89
- Update build scripts to use transpiled versions of newly added modules - Stop building locales.js and remove locales stuff from build scripts - No need for Grunt anymore since we don't need to make locales.js
21 lines
799 B
JavaScript
21 lines
799 B
JavaScript
/*global define */
|
|
if (typeof define !== 'undefined') {
|
|
// The section below determines which plugins will be included in a build
|
|
define([
|
|
"converse-core",
|
|
/* START: Removable components
|
|
* --------------------
|
|
* Any of the following components may be removed if they're not needed.
|
|
*/
|
|
"converse-chatview", // Renders standalone chat boxes for single user chat
|
|
"converse-mam", // XEP-0313 Message Archive Management
|
|
"converse-muc", // XEP-0045 Multi-user chat
|
|
"converse-muc-embedded",
|
|
"converse-ping", // XEP-0199 XMPP Ping
|
|
"converse-notification",// HTML5 Notifications
|
|
/* END: Removable components */
|
|
], function (converse) {
|
|
return converse;
|
|
});
|
|
}
|