Does anyone know where these SSP log entries come ...
# suitecommerce
c
Does anyone know where these SSP log entries come from? "See almond README: incorrect module build, no module name" "No ExtensionBundle" They are making debugging really difficult.
s
It sounds like you've tried to integrate a third-party AMD library into your code.
AMD is typically fine with anonymous modules (ie modules that have a
define
but don't set a name) but we use a library called almond to manage dependencies, and almond does not like anonymous modules.
If this is the case, you will either need to refactor the library's code so that it returns a name for the module, or you shim the module in in your distro file.
c
Ok, at least now I know what to do, Thanks @Steve Goldberg.
s
(But shimming is not supported for extensions, and is also sub-optimal in other ways.)