Updated bootstrap, jQuery
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-07-21 23:30:25 +02:00
parent 2961477103
commit 62e8bf9597
5 changed files with 21 additions and 7041 deletions

View File

@ -7,7 +7,7 @@ import {create} from "browser-sync";
import cleancss from "gulp-clean-css";
import concat from "gulp-concat";
import {deleteAsync} from 'del';
import {execSync} from "child_process";
import {exec, execSync} from "child_process";
import gulp from "gulp";
import log from "fancy-log";
import imagemin from "gulp-imagemin";
@ -129,19 +129,19 @@ gulp.task("clean:images", function () {
// Runs jekyll build command.
gulp.task("build:jekyll", function () {
const shellCommand = "JEKYLL_ENV=production bundle exec jekyll build --config _config.yml";
return execSync(shellCommand);
return exec(shellCommand);
});
// Runs jekyll build command using test config.
gulp.task("build:jekyll:test", function () {
const shellCommand = "bundle exec jekyll build --config _config.yml,_config.test.yml";
return execSync(shellCommand);
return exec(shellCommand);
});
// Runs jekyll build command using local config.
gulp.task("build:jekyll:local", function () {
const shellCommand = "bundle exec jekyll build --config _config.yml,_config.test.yml,_config.dev.yml";
return execSync(shellCommand);
return exec(shellCommand);
});
gulp.task("htmlproofer", function () {