From 5426ebae2f6b1ab4ace027700b809ebbb5a22dbd Mon Sep 17 00:00:00 2001 From: "Md.Harun-Ur-Rashid" Date: Wed, 20 Sep 2023 15:56:23 +0600 Subject: [PATCH] gulp exclude file --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 4ea4af5c0..abfb675db 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -255,7 +255,8 @@ gulp.task('copy', function() { '!.travis.yml', '!phpunit.xml.dist', '!phpunit.xml', - '!phpcs.xml' + '!phpcs.xml', + '!phpcs.xml.dist', ]) .pipe(gulp.dest('build/tutor/')); });