Created
August 1, 2019 00:15
-
-
Save cesarkohl/2e6ac812c59c52af040b63fe6ca8c0b5 to your computer and use it in GitHub Desktop.
Gulp / Pug
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 characters
| 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