You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested it and indeed it is broken. The error I'm getting is:
Error: [$injector:modulerr] Failed to instantiate module ng due to:
TypeError: 'undefined' is not an object (evaluating 'Function.prototype.bind.apply')
Apparently, this is because Phantom 1.x doesn't have Function.prototype.bind. Instead you can use Phantom 2.x or a polyfill.
Alternatively, you can lock the versions in package.json (as you have done) and it works as expected. You don't need the equals sign, though. You can just specify the version number directly:
Latest versions of one/some/all dependencies break the build.
When I changed the semantics in my local package.json from "^" to "=" and everything worked.
Thanks for the repo!
The text was updated successfully, but these errors were encountered: