Skip to content

Instantly share code, notes, and snippets.

@cesarkohl
Created August 1, 2019 00:15
Show Gist options
  • Select an option

  • Save cesarkohl/2e6ac812c59c52af040b63fe6ca8c0b5 to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/2e6ac812c59c52af040b63fe6ca8c0b5 to your computer and use it in GitHub Desktop.
Gulp / Pug
var gulp = require('gulp');
var pug = require('gulp-pug');
var less = require ('gulp-sass');
gulp.task('pug', function() {
return gulp
.src('*/*.pug')
.pipe(pug())
.pipe(gulp.dest('build'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment