Skip to content

Instantly share code, notes, and snippets.

@bumbu
Created February 26, 2015 10:37
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 bumbu/2a207a3b26351abf6936 to your computer and use it in GitHub Desktop.
Save bumbu/2a207a3b26351abf6936 to your computer and use it in GitHub Desktop.
Gulp stylus task
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