I am trying out gulp as an alternative build tool to Grunt, to compile my scss to css, as I have heard it can be much faster.
I having problems doing even a basic co
Notice that gulp-ruby-sass has a new syntax which should look like:
gulp.task('compass', function () sass(../sass/UK/screen.scss, { compass: true, sourcemap: true, style: 'compressed' }) .pipe(gulp.dest('../css/UK/screen.css')); });