From 910704ed2ffc8ba34cfc7bb9629bcca96ebdfe9a Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Fri, 21 Jul 2023 23:37:54 +0200 Subject: [PATCH] Execute htmlproofer asynchronously --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 97353b9..a7ad833 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -146,7 +146,7 @@ gulp.task("build:jekyll:local", function () { gulp.task("htmlproofer", function () { const shellCommand = "bundle exec htmlproofer _site/ --disable-external"; - return execSync(shellCommand); + return exec(shellCommand); }); // Deletes the entire _site directory.