Guest User

Untitled

a guest
Oct 17th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const pug = require('gulp-pug');
  2.  
  3. gulp.task('pug', function() {
  4. return gulp.src('src/pug/*.pug')
  5. .pipe(pug())
  6. .pipe(gulp.dest('src/temphtml/'))
  7. .pipe(browserSync.stream());
  8. });
Add Comment
Please, Sign In to add comment