Skip to content

Instantly share code, notes, and snippets.

@leandrojo
Created June 10, 2014 14:22
Show Gist options
  • Select an option

  • Save leandrojo/1b17ec0b196f4dba934a to your computer and use it in GitHub Desktop.

Select an option

Save leandrojo/1b17ec0b196f4dba934a to your computer and use it in GitHub Desktop.
gulp.task('watch', function() {
gulp.src([paths.stylesheets + "/**/*.styl"])
.pipe(watch(function() {
return gulp.src(paths.stylesheets + "/main.styl")
.pipe(stylus({compress: true}))
.pipe(gulp.dest(paths.stylesheets))
.pipe(gulp.dest(targetPaths.stylesheets))
}))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment