Upgraded dependencies
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-07-09 23:27:38 +02:00
parent 397c88d872
commit 80aeee5e52
3 changed files with 1531 additions and 1387 deletions

View File

@ -9,7 +9,7 @@ const concat = require("gulp-concat");
const del = require("del");
const exec = require("child_process").exec;
const gulp = require("gulp");
const gutil = require("gulp-util");
const log = require("fancy-log");
const imagemin = require("gulp-imagemin");
const notify = require("gulp-notify");
const postcss = require("gulp-postcss");
@ -38,7 +38,7 @@ gulp.task("build:styles:main", function () {
.pipe(gulp.dest(paths.jekyllCssFiles))
.pipe(gulp.dest(paths.siteCssFiles))
.pipe(browserSync.stream())
.on("error", gutil.log);
.on("error", log);
});
// Processes critical CSS, to be included in head.html.
@ -53,7 +53,7 @@ gulp.task("build:styles:critical", function () {
.pipe(cleancss())
.pipe(sourcemaps.write())
.pipe(gulp.dest("_includes"))
.on("error", gutil.log);
.on("error", log);
});
// Builds all styles.
@ -75,7 +75,7 @@ gulp.task("build:scripts:global", function () {
paths.jsFiles + "/main.js"
];
return gulp.src(files)
.on("error", gutil.log)
.on("error", log)
.pipe(sourcemaps.init({largeFile: true}))
.pipe(babel({
presets: ["@babel/env"]
@ -101,7 +101,7 @@ gulp.task("build:scripts:leaflet", function () {
.pipe(terser())
.pipe(gulp.dest(paths.jekyllJsFiles))
.pipe(gulp.dest(paths.siteJsFiles))
.on("error", gutil.log);
.on("error", log);
});
gulp.task("clean:scripts:leaflet", function () {
@ -240,5 +240,5 @@ gulp.task("update:bundle", function () {
.pipe(run("bundle install"))
.pipe(run("bundle update"))
.pipe(notify({message: "Bundle Update Complete"}))
.on("error", gutil.log);
.on("error", log);
});

View File

@ -4,20 +4,21 @@
"description": "My website",
"main": "index.js",
"dependencies": {
"bootstrap": "^4.3.1",
"bootstrap": "^4.5.0",
"jquery": "^3.5.0",
"js-yaml": "3.13.1",
"popper.js": "^1.15.0"
"popper.js": "^1.16.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"autoprefixer": "^9.6.0",
"babel-polyfill": "^6.26.0",
"braces": "^3.0.2",
"browser-sync": "^2.26.7",
"child_process": "^1.0.2",
"core-js": "^3.6.5",
"del": "^4.1.1",
"fancy-log": "^1.3.3",
"fstream": "^1.0.12",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
@ -31,18 +32,21 @@
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"gulp-util": "^3.0.8",
"localtunnel": "^1.9.2",
"lodash": "^4.17.13",
"lodash.template": "^4.5.0",
"micromatch": "^4.0.2",
"mixin-deep": "^1.3.2",
"node-sass": "^4.12.0",
"regenerator-runtime": "^0.13.5",
"set-value": "^2.0.1"
},
"resolutions": {
"minimist": "^1.2.3",
"kind-of": "^6.0.3"
"kind-of": "^6.0.3",
"css": "^3.0.0",
"source-map-resolve": "^0.6.0",
"chokidar": "^3.4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"

2892
yarn.lock

File diff suppressed because it is too large Load Diff