Solved!
A very specific code not supported by rhino broke the build almost silently.
Escape it as mentioned in the documentation solved the issue.
A very specific code not supported by rhino broke the build almost silently.
Escape it as mentioned in the documentation solved the issue.
- if(!steal.isRhino) {
- var event = document.createEvent('CustomEvent');
- event.initCustomEvent(eventName, true, true, data);
- document.documentElement.dispatchEvent(event);
-
}