Created
February 26, 2015 10:37
-
-
Save bumbu/2a207a3b26351abf6936 to your computer and use it in GitHub Desktop.
Gulp stylus task
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
stylus = require 'gulp-stylus' | |
nib = require 'nib' | |
gulp.task 'development-style', -> | |
gulp.src './app/css/style.styl' | |
.pipe stylus | |
use: [nib()] | |
linenos: true | |
'include css': true | |
.pipe gulp.dest "./public/css" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment