Skip to content

Commit

Permalink
Asdded async gulp task, so build in now not failing. (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
thetalkingtree authored Aug 26, 2024
1 parent 094ed9a commit b7fcc33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WebApp/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ var paths = {
concatCssDest: webroot + "css/site.min.css"
};

gulp.task("min:js", function () {
gulp.task("min:js", async function () {
return gulp.src([paths.js, "!" + paths.minJs], { base: "." })
.pipe(concat(paths.concatJsDest))
.pipe(uglify())
.pipe(gulp.dest("."));
});

gulp.task("min:css", function () {
gulp.task("min:css", async function () {
return gulp.src([paths.css, "!" + paths.minCss])
.pipe(concat(paths.concatCssDest))
.pipe(cssmin())
Expand Down

0 comments on commit b7fcc33

Please sign in to comment.