Skip to content

Instantly share code, notes, and snippets.

@Snugug
Created June 10, 2015 18:08
Show Gist options
  • Select an option

  • Save Snugug/83e9befa3ecec3aeb91f to your computer and use it in GitHub Desktop.

Select an option

Save Snugug/83e9befa3ecec3aeb91f to your computer and use it in GitHub Desktop.
Eyeglass with Gulp Sass
var gulp = require('gulp'),
sass = require('gulp-sass'),
Eyeglass = require('eyeglass');
gulp.task('sass', function () {
gulp.src('sass/**/*.scss')
.pipe(sass(new Eyeglass({
// Sass options go here
})))
.pipe(/* Other Stuff */)
})
@chriseppstein
Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment