I'm building a site using node and gulp, the web server starts with a gulp task, that in addition to starting it, also bundles js and css files, and watches for changes.
The issue is, when the gulp task is doing heavy processing, the whole ide UI freezes until the intensive process is finished.
The issue doesn't occur when I issue the task from terminal, so I assume that the run configuration runs on the UI thread of the ide (I also suspect it becuase moving files in the project navigator freezes the UI as well, while moving files outside of the ide is much much faster).
My question is wheter it's possible to force the run configuration to run on a seperate thread other then the UI thread?
Not sure if it's helping, but I've attached a screenshot of my current configuration:
Thanks.