File: fix-for-gulp-4.diff

package info (click to toggle)
libjs-jsencrypt 2.3.0%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 688 kB
  • sloc: makefile: 11; sh: 6
file content (15 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: fix for gulp 4
Author: Xavier Guimard <yadd@debian.org>
Forwarded: no
Last-Update: 2020-03-23

--- a/gulpfile.js
+++ b/gulpfile.js
@@ -36,5 +36,5 @@
     .pipe(gulp.dest('bin'));
 });
 
-gulp.task('build', ['scripts']);
-gulp.task('default', ['build']);
+gulp.task('build', gulp.series(['scripts']));
+gulp.task('default', gulp.series(['build']));