From 88990aa7608866b3ffb9233c40a9169d11b5f52b Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Sat, 30 Jan 2021 00:00:27 +0300 Subject: [PATCH] Switch go Gulp 4 for builds --- gulpfile.js | 6 ++---- package.json | 8 ++++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 30fa835..b092bd2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,14 +16,12 @@ gulp.task('prepare-release', function() { .pipe(tar('real-ban-plugin-' + version + '.tar')) .pipe(gzip()) ) - .pipe(chmod(644)) + .pipe(chmod(0644)) .pipe(gulp.dest('release')); }); // Builds and packs plugins sources -gulp.task('default', ['prepare-release'], function() { - // The "default" task is just an alias for "prepare-release" task. -}); +gulp.task('default', gulp.series('prepare-release')); /** * Returns files stream with the plugin sources. diff --git a/package.json b/package.json index 4a3634d..b654bf4 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "version": "1.1.0", "devDependencies": { - "gulp": "~3.8.10", + "gulp": "~4.0.0", "event-stream": "~3.1.7", "gulp-zip": "~2.0.2", - "gulp-tar": "~1.3.1", + "gulp-tar": "~3.1.0", "gulp-gzip": "~0.0.8", - "gulp-chmod": "~1.2.0", + "gulp-chmod": "~3.0.0", "gulp-rename": "~1.2.0" } -} \ No newline at end of file +}