I am trying to run my dist folder directly instead of doing ng serve. For that I wrote a script in package.json.
start-dev: ng build && http-server dist
The problem is I want it to auto run whenever I save any file. Also it will build the whole npm again which is a very slow procedure. Any other method on how I can do it? And do it faster?