Created
June 10, 2015 18:08
-
-
Save Snugug/83e9befa3ecec3aeb91f to your computer and use it in GitHub Desktop.
Eyeglass with Gulp Sass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 */) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works for me:
https://gist.github.com/chriseppstein/d7be56e21b216275bd86