From 6b32f37fd9fc48366dbfb30ab03f748855f33f88 Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Wed, 1 Feb 2023 20:26:56 +0100 Subject: [PATCH] Add missing dependencies to install script --- install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install.sh b/install.sh index 5d673bc..4f8a959 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,12 @@ #!/bin/bash # Install the required dependencies for CHGenerator +# Install magick to resize images +brew install imagemagick + +# Install avif to create AVIF versions of images +npm install avif -g + # Install the Javascript minifier (required if `minifyJavaScript = True`) # https://github.com/mishoo/UglifyJS npm install uglify-js -g