I have 2 modules A and B. Also I have 3 libs L1, L2 and L3.
Module A:
define(
['L1', 'L2'],
function (L1, L2) { ... }
);
Module B:
define(
['A', 'L3'],
function (A, L3) { ... }
);
Is i'm right that module B already have L1 and L2 libs in scope or I must reinclude these libs?
Module B:
define(
['A', 'L1', 'L2', 'L3'],
function (A, L1, L2, L3) { ... }
);