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
{{ message }}
This repository has been archived by the owner on Feb 27, 2019. It is now read-only.
I've created a new project and add a new component using the generator -
yo fountain-angular1:component --name myComponent --dir components/game
I've added references to the new component and successfully used it in the code:
importangularfrom'angular';import{hello}from'./app/hello';import'angular-ui-router';importroutesConfigfrom'./routes';// here is the new componentimport{myComponent}from'./app/components/game/myComponent';import'./index.scss';exportconstapp='app';angular.module(app,['ui.router']).config(routesConfig).component('myComponent',myComponent)// <---- here as well.component('app',hello);
changing the js file of the new componenet triggers a browsersync reload.
BUT - changing the html file of the new component doesn't trigger a reload.
I've created a new project and add a new component using the generator -
yo fountain-angular1:component --name myComponent --dir components/game
I've added references to the new component and successfully used it in the code:
changing the js file of the new componenet triggers a browsersync reload.
BUT - changing the html file of the new component doesn't trigger a reload.
Any idea why?
Relevant Links
nothing special about it but i've uploaded the repo - https://github.com/IdanCo/test-browsersync
Environment
The text was updated successfully, but these errors were encountered: