The tutorials got me going with the Dojo build system. However I'm left with a question that'll make or break the possibility of deploying a fully built release in my case. It is possible that the tutorial explains it, but that I didn't get it. Apologies if that was the case !
I use a library that lives inside an AMD layer ; let's call it blackboxLayer.js
. There are several packages inside that layer, but I suppose the question would be the same if there was only one. So let's say that blackboxLayer.js
contains a single package called blackbox
, with modules blackbox/A
and blackbox/B
. To be sure that things are fun, that layer is bootable. And of course it's closed source stuff.
My app modules reference blackbox/A
or blackbox/B
. How do I make my build profile go look for the blackbox
package inside that blackboxLayer.js
file, rather than in a directory ?
Thanks for any input. :)