mirror of
https://github.com/Mibew/first-message-plugin.git
synced 2024-11-15 00:34:17 +03:00
Switch go Gulp 4 for builds
This commit is contained in:
parent
209ce6ae64
commit
6f817fb777
@ -16,14 +16,12 @@ gulp.task('prepare-release', function() {
|
||||
.pipe(tar('first-message-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.
|
||||
|
@ -1,12 +1,12 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"devDependencies": {
|
||||
"gulp": "~3.9.0",
|
||||
"gulp": "~4.0.0",
|
||||
"event-stream": "3.3.4",
|
||||
"gulp-zip": "~3.0.2",
|
||||
"gulp-tar": "~1.4.0",
|
||||
"gulp-tar": "~3.1.0",
|
||||
"gulp-gzip": "~1.1.0",
|
||||
"gulp-chmod": "~1.2.0",
|
||||
"gulp-chmod": "~3.0.0",
|
||||
"gulp-rename": "~1.2.2"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user