From 5a0d42d892a8257314d1546e9afe2bc7c4b5f882 Mon Sep 17 00:00:00 2001 From: MeowcaTheoRange Date: Thu, 23 Nov 2023 12:07:03 -0600 Subject: [PATCH] Again, fix gulpfile --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5f5fd56..addd5ae 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -21,6 +21,6 @@ exports.default = () => { cb(null, file); }) ) - .pipe(src("views/**/*")) + .pipe(src(["views/**/*", "!views/**/*.html"])) .pipe(dest("output/")); };