Advertisement
AllenYuan

build - default - 1

Apr 22nd, 2020
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // html task: move index.html (entry point for the browser) to ./build/
  2. gulp.task('html', function () {
  3.   return gulp
  4.     .src('src/index.html')
  5.     .on('error', interceptErrors)
  6.     .pipe(gulp.dest('./build/'));
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement