Hi,
Probably my biggest loss of productivity is when I am writing new angular HTML template code, and I accidentally save some malformed HTML, or syntactically incorrect template binding code in the html. The angular hot reload attempts to compile, and fails (yes it does identify the bad code), bit it also dumps a lot of "No pipe found with name 'localize'" errors.
The problem, is that even if I fix my incorrect syntax, the hot reload is now completely broken, the "No pipe found with name 'localize'" errors remain, I have to kill my angular server, and re-run it - meaning a full recompile which wastes a couple of minutes.
As you can imagine, this is quite a productivity killer.
This has always happened in my AspNetZero code base, so I dont believe I introduced anything to cause this brittle behavior.
Is this just me? Can this be made more resilient?
Thanks,