I am trying to get live edit working on my AngularJS project.
The project has about 300 JavaScript files. I was previously using gulp to concatenate these files into one and then watching the concatenated file with LiveReload.
That was becoming a bit slow, because the whole page was being reloaded every time I made a change to the JavaScript.
I was hoping that WebStorm's LiveEdit would be able to do it more quickly, so I have stopped concatenating the JavaScript files for dev and injected the 300 script tags into index.html instead.
I am also compiling all my html templates into a js file using gulp angularTemplateCache.
Now, when I start the debugger and change an html template, gulp recompiles the templates and the change is instantly reflected, without reloading the page, which is exactly what I want.
However, when I change any of the other js files the changes do not appear until I refresh the page in the browser.
If I use LiveReload on the page, the page is automatically refreshed when I change html or .js files.
What am I missing?