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
Building a project with alpha 6-3 and the latest compiler build using ngModules seems to crash when you use materials modules. This commit to the compiler broke it: angular/angular@83e2d3d
On line 238 of url_resolver.js, if you change
function _split(uri) {
return uri.match(_splitRe);
}
to
function _split(uri) {
if (typeof uri === 'string')
return uri.match(_splitRe);
}
it will work, as it appears that the material modules are exporting numbers instead of strings. If I console.log uri, MdButtonModule will pass it the number 436 and also the string 'package:436' for example. The number is causing the crash.
I know it was mentioned that this is experimental release, but just making sure that this is a known issue and addressed before next release.