xmpp.chapril.org-conversejs/src/build.js
JC Brand 4a9146460d Fix random fails in FF due to different module loading times
According to the require.js documentation, if you are using "require" in HTML,
then the data-main attribute should not be used.

http://www.requirejs.org/docs/api.html#data-main

So merged main.js into converse.js, which appears to solve the problem.
2016-03-07 16:35:08 +00:00

9 lines
200 B
JavaScript

({
baseUrl: "../",
name: "components/almond/almond.js",
out: "../dist/converse.min.js",
mainConfigFile: '../converse.js',
include: ['converse'],
insertRequire: ['converse']
})