Commit ae1424aa authored by cmrd Senya's avatar cmrd Senya Committed by JC Brand

@converse/headless: update dependencies references

* Link internal dependencies by relative path
* Don't use webpack aliases for external dependencies to reduce
user-side configuration
parent 12b9824e
......@@ -6,10 +6,10 @@
(function (root, factory) {
define([
"converse-core",
"./converse-core",
"filesize",
"utils/form",
"utils/emoji"
"./utils/form",
"./utils/emoji"
], factory);
}(this, function (converse, filesize) {
"use strict";
......
......@@ -6,16 +6,16 @@
(function (root, factory) {
define(["sizzle",
"es6-promise",
"lodash.noconflict",
"lodash.fp",
"polyfill",
"i18n",
"utils/core",
"es6-promise/dist/es6-promise.auto",
"./lodash.noconflict",
"./lodash.fp",
"./polyfill",
"./i18n",
"./utils/core",
"moment",
"strophe.js",
"pluggable",
"backbone.noconflict",
"pluggable.js/dist/pluggable",
"./backbone.noconflict",
"backbone.nativeview",
"backbone.browserStorage"
], factory);
......
......@@ -7,7 +7,7 @@
/* This is a Converse plugin which add support for XEP-0030: Service Discovery */
(function (root, factory) {
define(["converse-core", "sizzle"], factory);
define(["./converse-core", "sizzle"], factory);
}(this, function (converse, sizzle) {
const { Backbone, Promise, Strophe, $iq, b64_sha1, utils, _, f } = converse.env;
......
......@@ -10,8 +10,8 @@
(function (root, factory) {
define(["sizzle",
"converse-core",
"converse-disco",
"./converse-core",
"./converse-disco",
"strophejs-plugin-rsm"
], factory);
}(this, function (sizzle, converse) {
......
......@@ -6,14 +6,14 @@
(function (root, factory) {
define([
"utils/form",
"converse-core",
"converse-disco",
"backbone.overview",
"backbone.orderedlistview",
"./utils/form",
"./converse-core",
"./converse-disco",
"backbone.overview/backbone.overview",
"backbone.overview/backbone.orderedlistview",
"backbone.vdomview",
"utils/muc",
"utils/emoji"
"./utils/muc",
"./utils/emoji"
], factory);
}(this, function (u, converse) {
"use strict";
......
......@@ -8,7 +8,7 @@
* as specified in XEP-0199 XMPP Ping.
*/
(function (root, factory) {
define(["converse-core", "strophejs-plugin-ping"], factory);
define(["./converse-core", "strophejs-plugin-ping"], factory);
}(this, function (converse) {
"use strict";
// Strophe methods for building stanzas
......
......@@ -5,7 +5,7 @@
// Licensed under the Mozilla Public License (MPLv2)
(function (root, factory) {
define(["converse-core", "templates/vcard.html"], factory);
define(["./converse-core", "./templates/vcard.html"], factory);
}(this, function (converse, tpl_vcard) {
"use strict";
const { Backbone, Promise, Strophe, _, $iq, $build, b64_sha1, moment, sizzle } = converse.env;
......
......@@ -4,16 +4,16 @@
if (typeof define !== 'undefined') {
// The section below determines which plugins will be included in a build
define([
"converse-core",
"./converse-core",
/* START: Removable components
* --------------------
* Any of the following components may be removed if they're not needed.
*/
"converse-chatboxes", // Backbone Collection and Models for chat boxes
"converse-disco", // Service discovery plugin
"converse-mam", // XEP-0313 Message Archive Management
"converse-ping", // XEP-0199 XMPP Ping
"converse-vcard", // XEP-0054 VCard-temp
"./converse-chatboxes", // Backbone Collection and Models for chat boxes
"./converse-disco", // Service discovery plugin
"./converse-mam", // XEP-0313 Message Archive Management
"./converse-ping", // XEP-0199 XMPP Ping
"./converse-vcard", // XEP-0054 VCard-temp
/* END: Removable components */
], function(converse) {
return converse;
......
......@@ -10,9 +10,9 @@
(function (root, factory) {
define([
"es6-promise",
"es6-promise/dist/es6-promise.auto",
"jed",
"lodash.noconflict",
"./lodash.noconflict",
"moment",
'moment/locale/af',
'moment/locale/ar',
......
define(['lodash', 'lodash.converter'], function (_, lodashConverter) {
define(['lodash', './3rdparty/lodash.fp'], function (_, lodashConverter) {
var fp = lodashConverter(_.runInContext());
return fp;
});
......@@ -11,16 +11,16 @@
if (typeof define === 'function' && define.amd) {
define([
"sizzle",
"es6-promise",
"fast-text-encoding",
"lodash.noconflict",
"es6-promise/dist/es6-promise.auto",
"fast-text-encoding/text",
"../lodash.noconflict",
"backbone",
"strophe.js",
"uri",
"templates/audio.html",
"templates/file.html",
"templates/image.html",
"templates/video.html"
"urijs",
"../templates/audio.html",
"../templates/file.html",
"../templates/image.html",
"../templates/video.html"
], factory);
} else {
// Used by the mockups
......
(function (root, factory) {
define([
"lodash.noconflict",
"utils/core",
"../lodash.noconflict",
"./core",
"twemoji"
], factory);
}(this, function (
......
......@@ -10,17 +10,17 @@
(function (root, factory) {
define([
"sizzle",
"lodash.noconflict",
"utils/core",
"templates/field.html",
"templates/select_option.html",
"templates/form_select.html",
"templates/form_textarea.html",
"templates/form_checkbox.html",
"templates/form_username.html",
"templates/form_input.html",
"templates/form_captcha.html",
"templates/form_url.html",
"../lodash.noconflict",
"./core",
"../templates/field.html",
"../templates/select_option.html",
"../templates/form_select.html",
"../templates/form_textarea.html",
"../templates/form_checkbox.html",
"../templates/form_username.html",
"../templates/form_input.html",
"../templates/form_captcha.html",
"../templates/form_url.html",
], factory);
}(this, function (
sizzle,
......
......@@ -8,7 +8,7 @@
//
/*global define, escape, Jed */
(function (root, factory) {
define(["converse-core", "utils/core"], factory);
define(["../converse-core", "./core"], factory);
}(this, function (converse, u) {
"use strict";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment