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