Move path and shim configs from converse.js to main.js
This should make it easier to create custom builds, e.g. with more or less dependencies.
This commit is contained in:
parent
62c314ff66
commit
7ed30139d6
36
converse.js
36
converse.js
@ -12,42 +12,6 @@
|
||||
console = { log: function () {}, error: function () {} };
|
||||
}
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
require.config({
|
||||
paths: {
|
||||
"locales": "locale/locales",
|
||||
"sjcl": "components/sjcl/sjcl",
|
||||
"tinysort": "components/tinysort/src/jquery.tinysort",
|
||||
"underscore": "components/underscore/underscore",
|
||||
"backbone": "components/backbone/backbone",
|
||||
"localstorage": "components/backbone.localStorage/backbone.localStorage",
|
||||
"strophe": "components/strophe/strophe",
|
||||
"strophe.muc": "components/strophe.muc/index",
|
||||
"strophe.roster": "components/strophe.roster/index",
|
||||
"strophe.vcard": "components/strophe.vcard/index",
|
||||
"strophe.disco": "components/strophe.disco/index"
|
||||
},
|
||||
|
||||
// define module dependencies for modules not using define
|
||||
shim: {
|
||||
'backbone': {
|
||||
//These script dependencies should be loaded before loading
|
||||
//backbone.js
|
||||
deps: [
|
||||
'underscore',
|
||||
'jquery'
|
||||
],
|
||||
//Once loaded, use the global 'Backbone' as the
|
||||
//module value.
|
||||
exports: 'Backbone'
|
||||
},
|
||||
'underscore': { exports: '_' },
|
||||
'strophe.muc': { deps: ['strophe', 'jquery'] },
|
||||
'strophe.roster': { deps: ['strophe', 'jquery'] },
|
||||
'strophe.vcard': { deps: ['strophe', 'jquery'] },
|
||||
'strophe.disco': { deps: ['strophe', 'jquery'] }
|
||||
}
|
||||
});
|
||||
|
||||
define("converse", [
|
||||
"locales",
|
||||
"localstorage",
|
||||
|
39
main.js
39
main.js
@ -1,3 +1,42 @@
|
||||
require.config({
|
||||
paths: {
|
||||
"jquery": "components/jquery/jquery",
|
||||
"locales": "locale/locales",
|
||||
"sjcl": "components/sjcl/sjcl",
|
||||
"tinysort": "components/tinysort/src/jquery.tinysort",
|
||||
"underscore": "components/underscore/underscore",
|
||||
"backbone": "components/backbone/backbone",
|
||||
"localstorage": "components/backbone.localStorage/backbone.localStorage",
|
||||
"strophe": "components/strophe/strophe",
|
||||
"strophe.muc": "components/strophe.muc/index",
|
||||
"strophe.roster": "components/strophe.roster/index",
|
||||
"strophe.vcard": "components/strophe.vcard/index",
|
||||
"strophe.disco": "components/strophe.disco/index"
|
||||
},
|
||||
|
||||
// define module dependencies for modules not using define
|
||||
shim: {
|
||||
'backbone': {
|
||||
//These script dependencies should be loaded before loading
|
||||
//backbone.js
|
||||
deps: [
|
||||
'underscore',
|
||||
'jquery'
|
||||
],
|
||||
//Once loaded, use the global 'Backbone' as the
|
||||
//module value.
|
||||
exports: 'Backbone'
|
||||
},
|
||||
'tinysort': { deps: ['jquery'] },
|
||||
'strophe': { deps: ['jquery'] },
|
||||
'underscore': { exports: '_' },
|
||||
'strophe.muc': { deps: ['strophe', 'jquery'] },
|
||||
'strophe.roster': { deps: ['strophe'] },
|
||||
'strophe.vcard': { deps: ['strophe'] },
|
||||
'strophe.disco': { deps: ['strophe'] }
|
||||
}
|
||||
});
|
||||
|
||||
require(["jquery", "converse"], function($, converse) {
|
||||
window.converse = converse;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user