Fix failing subsequent builds by upgrading to Gulp 4.x - Fixes #241 (#1113)

Signed-off-by: Rogier Hofboer <rogier@hofboer.nl>
pull/1149/head
Rogier Hofboer 2021-08-25 19:51:53 +02:00 committed by GitHub
parent e705ec7bb4
commit f3fe7255a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1812 additions and 1702 deletions

View File

@ -48,5 +48,5 @@
.pipe(gulp.dest("./src/main/resources/web")); .pipe(gulp.dest("./src/main/resources/web"));
}); });
gulp.task("default", [ "css", "copyFontLibs", "eslint", "js" ]); gulp.task("default", gulp.parallel("css", "copyFontLibs", gulp.series("eslint", "js")));
})(); })();

View File

@ -1,7 +0,0 @@
{
"dependencies": {
"graceful-fs": {
"version": "4.2.3"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -6,11 +6,11 @@
"build": "gulp default" "build": "gulp default"
}, },
"dependencies": { "dependencies": {
"gulp": "^3.9.0", "gulp": "^4.0.2",
"gulp-eslint": "^4.0.0", "gulp-eslint": "^6.0.0",
"gulp-sass": "^3.1.0", "gulp-sass": "^4.1.0",
"gulp-uglify": "^1.5.1", "gulp-uglify": "^3.0.2",
"material-design-icons": "2.0.0", "material-design-icons": "^3.0.1",
"roboto-fontface": "0.4.3" "roboto-fontface": "^0.10.0"
} }
} }