File: 07-gulp.diff

package info (click to toggle)
node-yarnpkg 1.13.0-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 93,036 kB
  • sloc: sh: 323; makefile: 19
file content (13 lines) | stat: -rw-r--r-- 384 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Fix gulp error "Task default can't support dependencies that is
 not an array of strings"
Forwarded: not-needed
Author: Paolo Greppi <paolo.greppi@libpf.com>

--- a/gulpfile.js
+++ b/gulpfile.js
@@ -32,4 +32,4 @@
   build('debian/lib', babelRc.env[majorVer >= 5 ? 'node5' : 'pre-node5'])
 );
 
-gulp.task('default', gulp.task('build'));
+gulp.task('default', ['build']);