I see. I think it may be because our library uses an anonymous define:
define(go)
We’ll consider switching to a named define statement, which will probably fix this
define('go', go)
But we need to make sure this won’t affect current users adversely.
If you wanted to try this in your own project, you could edit the go.js file by searching for define
and replacing whatever it is, say window.define(ca)
to window.define('go', ca)
. (that’s what it’s minified as in the latest go.js release)
That would at least confirm that the anonymous define is the issue.