I have a Gulp task that listens for any Sass file changes. This happens independently of PhpStorm; it updates my CSS file. The Live Edit doesn't see the update.
If I manually open the CSS file in PhpStorm and make a change and save it, then it does update it on the site.
Googling showed to create a file watcher, but that's to run the Sass compiler which is entirely unneeded. I need PhpStorm to watch that file actively and if it changes, update it.
How can that be accomplished?