diff --git a/gulpfile.js b/gulpfile.js index 45479a5c..7fcf2b25 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -2,9 +2,8 @@ var gulp = require('gulp'); var less = require('gulp-less'); -gulp.task('less', function (cb) { - gulp.src('styles/daggerheart.less').pipe(less()).pipe(gulp.dest('styles')); - cb(); +gulp.task('less', function () { + return gulp.src('styles/daggerheart.less').pipe(less()).pipe(gulp.dest('styles')); }); gulp.task(