headless.js 903 B

123456789101112131415161718192021
  1. /* * This file is used to tell require.js which components (or plugins) to load
  2. * when it generates a build of converse-headless.js (in the dist/ directory)
  3. */
  4. if (typeof define !== 'undefined') {
  5. // The section below determines which plugins will be included in a build
  6. define([
  7. "converse-core",
  8. /* START: Removable components
  9. * --------------------
  10. * Any of the following components may be removed if they're not needed.
  11. */
  12. "converse-chatboxes", // Backbone Collection and Models for chat boxes
  13. "converse-disco", // Service discovery plugin
  14. "converse-mam", // XEP-0313 Message Archive Management
  15. "converse-ping", // XEP-0199 XMPP Ping
  16. "converse-vcard", // XEP-0054 VCard-temp
  17. /* END: Removable components */
  18. ], function(converse) {
  19. return converse;
  20. });
  21. }