From c4d7a3a1de243db48112a35a35efd9a63229776a Mon Sep 17 00:00:00 2001 From: Robert Marshall Date: Sun, 21 Apr 2019 14:57:06 +0100 Subject: [PATCH] Update gulp task name to reflect what it does --- Website/Website.csproj | 2 +- Website/gulpfile.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Website/Website.csproj b/Website/Website.csproj index bccf52f..be2995d 100644 --- a/Website/Website.csproj +++ b/Website/Website.csproj @@ -17,6 +17,6 @@ - + diff --git a/Website/gulpfile.js b/Website/gulpfile.js index ebc904f..419f87e 100644 --- a/Website/gulpfile.js +++ b/Website/gulpfile.js @@ -2,7 +2,7 @@ var gulp = require("gulp"), less = require("gulp-less"), cleanCss = require("gulp-clean-css"); -gulp.task("default", function () { +gulp.task("compile_less", function () { return gulp.src('wwwroot/css/**/*.less') .pipe(less()) .pipe(cleanCss()) @@ -10,5 +10,5 @@ gulp.task("default", function () { }); gulp.task("watch", function () { - gulp.watch("wwwroot/css/**/*.less", gulp.series("default")); + gulp.watch("wwwroot/css/**/*.less", gulp.series("compile_less")); }); \ No newline at end of file