Skip to content

Instantly share code, notes, and snippets.

@mirisuzanne
Created February 24, 2015 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mirisuzanne/bf0d91834327dbfd0846 to your computer and use it in GitHub Desktop.
Save mirisuzanne/bf0d91834327dbfd0846 to your computer and use it in GitHub Desktop.
# install the requirements
npm install gulp
npm install gulp-sass
npm install susy
# compile your sass
gulp sass
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('sass', function () {
gulp.src('./scss/*.scss')
.pipe(sass())
.pipe(gulp.dest('./css'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment