Created
April 16, 2014 07:26
Revisions
-
manolenso created this gist
Apr 16, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ # Gulp Task source snippet gus gulp.task('${1}', function () { return gulp.src(${2}) .pipe(${3}(${4}))${5} }); # Gulp Task Watch snippet guw gulp.task('watch', function () { gulp.watch('${1}', ['${2}'])${3} }); # Gulp Watch snippet gug gulp.watch('${1}', ['${2}']);${3} # Gulp pipe snippet gup .pipe(${1}('${2}'))${3} # Gulp pipe bracket snippet gupb .pipe(${1}({ ${2}: '${3}' }))${4} # Gulp var require snippet guv var ${1} = require('gulp-${2}');${3}