Skip to content

Instantly share code, notes, and snippets.

@webarthur
Created July 25, 2016 17:42
Show Gist options
  • Save webarthur/b3434f1cddb3cab53a6daf710f035fdb to your computer and use it in GitHub Desktop.
Save webarthur/b3434f1cddb3cab53a6daf710f035fdb to your computer and use it in GitHub Desktop.
Includes HTML com ajuda do plugin gulp-file-include para Gulp
var gulp = require('gulp')
, fileinclude = require('gulp-file-include');
gulp.task('default', function() {
gulp.src(['index.html'])
.pipe(fileinclude())
.pipe(gulp.dest('./'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment