As an alternative to Compass let's use Gulp. It's much faster. I created automated Gulp tasks to run. When 'gulp' is executed in local repo's folder it will automatically compile, add browser prefixes and minify CSS.
Steps to get Gulp running:
Install npm on your machine.
(There are several ways. The easiest maybe is to simply click the Node.js installer downloaded from https://nodejs.org/.)
Open terminal, move into this repo's folder.
Run 'npm install'.
(This will check the package.json and install specified packages.)
Run 'gulp'.
(This will check the gulpfile.js and run the specified tasks.)
As an alternative to Compass let's use Gulp. It's much faster. I created automated Gulp tasks to run. When 'gulp' is executed in local repo's folder it will automatically compile, add browser prefixes and minify CSS.
Steps to get Gulp running: