I have a build command for my Sass styles like this:
sass src/styles/main.scss --style compressed | autoprefixer -b \"> 1%, IE 8\" > dist/main.css
Now, I would like to have a similar command for the developement process. But I can't figure out how to pipe the files changed by sass --watch
to the autoprefixer cli. I managed to get around it with fswatch tool for OSX but I hope for an easier and more universal solutiond