From 1e65b7a66e176c93a1b7bed1d983668f46da468a Mon Sep 17 00:00:00 2001 From: tomaioo Date: Fri, 17 Apr 2026 11:13:11 -0700 Subject: [PATCH] fix: 2 improvements across 2 files - Quality: Invalid ambient declarations with initializers in `d.ts` file - Quality: Gulp task completes before LESS pipeline finishes Signed-off-by: tomaioo <203048277+tomaioo@users.noreply.github.com> --- gulpfile.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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(