Created
June 10, 2014 14:22
-
-
Save leandrojo/1b17ec0b196f4dba934a to your computer and use it in GitHub Desktop.
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
| 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