I try to make a gulp compile my sass then autoprefixit with gulp-autoprefixer
but i\'m getting an error.
var gulp = require(\'gulp\'),
sass = re
I updated node.js to the latest version using :
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
for my Ubuntu machine, as shown here.
After that i updated NPM using :
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
As shown here.
Now the gulp-autoprefixer
start working but i got an error from gulp-sass
. I updated it using this instruction :
Found here.Now i have "gulp-sass": "^2.0.4"
and this fixed all my problems.
Thanks for advice and help.