javascript - Meteor-Angular2 HTML Templates not updating on code change -
i'm working on a project running meteor 1.1.0.2 using following packages:
meteor-platform angular:angular2 netanelgilad:angular2-typescript
i've run frustrating issue. when create template:
/sometemplate.ng.html
<h1>hello world</h1> <!-- displays: hello world -->
it run. on subsequent changes template, won't update.
/sometemplate.ng.html
<h1>hello somebody</h1> <!-- displays: hello world -->
this wasn't case, i'm unsure if or change may have caused issue.
it seems templates being cached , don't update. can imagine, makes frustrating dev experience.
same named templates cached across different apps.
if start new project, pointing same template name, fetches old template.
/sometemplate.ng.html
<h1>new meteor project</h1> <!-- displays: hello world -->
any ideas whether issue package specific or meteor related. has else experienced same problem? quick/hard fixes?
Comments
Post a Comment