×

Welcome to TagMyCode

Please login or create account to add a snippet.
1
0
 
1
Language: Javascript
Posted by: user43ce9
Added: Oct 7, 2016 5:31 AM
Views: 2112
Tags: gulp
  1. gulp.task(name, function() {
  2.     return gulp.src(path)
  3.         .pipe(plugin)
  4.         .pipe(plugin)
  5.         .pipe(gulp.dest(path));
  6. });