From 1b3b83273cac360dbf5014ae4d7ad344f42ee757 Mon Sep 17 00:00:00 2001 From: Denny Biasiolli Date: Wed, 16 Mar 2022 15:51:31 +0100 Subject: [PATCH] gulp: fixing base path for 'package' task --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index cd84cd2..2850663 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -278,7 +278,10 @@ gulp.task('package', gulp.series('default', () => './images/**', './plugin/**', './**.md' - ]).pipe(zip('reveal-js-presentation.zip')).pipe(gulp.dest('./')) + ], + { + base: './' + }).pipe(zip('reveal-js-presentation.zip')).pipe(gulp.dest('./')) ))