require(['../../plugin/extA', 'foo'], function (A, foo) {
//...
});
extA.js:
define(['./extB'], function (B) {
//...
});
extB.js:
define( function () {
//...
});
The baseUrl in the build configuration was set to lib/core/.
This scenario will fail to run in current implementation - because of the line 77 that breaks the normalization Almond will try to load ../.././extB instead of ../../extB.
Let's assume the following directory structure and files:
main.js:
extA.js:
extB.js:
The
baseUrl
in the build configuration was set tolib/core/
.This scenario will fail to run in current implementation - because of the line 77 that breaks the normalization Almond will try to load
../.././extB
instead of../../extB
.