From c3733c5db4ab9779a640bffd5985cae80ec84fcc Mon Sep 17 00:00:00 2001 From: Jarrad Hope Date: Thu, 9 Jun 2016 14:03:55 +0200 Subject: [PATCH] missing php files from gulp build --- gulpfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index ed18751..e89cfc0 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -96,6 +96,10 @@ gulp.task('build', ['clean', 'styles', 'scripts', 'images'], function() { .pipe(useref({noAssets:true})) .pipe(gulp.dest('build')); + gulp.src('src/*.php') + .pipe(useref({noAssets:true})) + .pipe(gulp.dest('build')); + }); gulp.task('default', ['watch']);