You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The biggest issue with the Dojo loader is that it does not process very well files with multiple define calls, which is a standard way to build an AMD application.
Indeed, if we have the following layer.js file:
define(A, [B], {});
define(B, [A], {});
the dojo loader will stop processing the file when it encounters the B dependency for module A and will try to load the module B from its own module file B.js.
Current build output is loadable by RequireJS but not loadable by Dojo 1.9 loader.
The text was updated successfully, but these errors were encountered: