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
This lets you guys get it wrong e.g. You do a build via grunt and forget to copy it manually to release folder.
Then npm publish will not have the updated version.
This is what happened to 0.2.11 as the release/angular-ui-router.js is not the same as build/angular-ui-router.js and it doesn't contain the code about html5Mode
varisHtml5=$locationProvider.html5Mode();if(angular.isObject(isHtml5)){//*** THIS IS MISSING FROM NPM 0.2.11 release/angular-ui-router.js isHtml5=isHtml5.enabled;}varurl=urlMatcher.format(params);options=options||{};if(!isHtml5&&url!==null){url="#"+$locationProvider.hashPrefix()+url;}
So please make grunt to output in the release folder so we won't be seeing this error prone behavior in future
The text was updated successfully, but these errors were encountered:
This lets you guys get it wrong e.g. You do a build via
grunt
and forget to copy it manually torelease
folder.Then
npm publish
will not have the updated version.This is what happened to
0.2.11
as therelease/angular-ui-router.js
is not the same asbuild/angular-ui-router.js
and it doesn't contain the code abouthtml5Mode
release/angular-ui-router.js
build/angular-ui-router.js
So please make grunt to output in the
release
folder so we won't be seeing this error prone behavior in futureThe text was updated successfully, but these errors were encountered: