From 90822140b7654ba40506c9e53ffd6f8ceb3f5088 Mon Sep 17 00:00:00 2001 From: ralf Date: Thu, 21 Apr 2022 13:47:39 +0200 Subject: [PATCH] run "npm install --legacy-peer-deps" to cope with dependency mismatch caused by downgraded grunt-newer --- install-cli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-cli.php b/install-cli.php index b5058a8160..e6d0f2da37 100755 --- a/install-cli.php +++ b/install-cli.php @@ -278,7 +278,7 @@ run_cmd($cmd, 'composer'); // update npm dependencies and run grunt to minify javascript and css if ($npm && $grunt) { - run_cmd($npm.' install', 'npm'); + run_cmd($npm.' install --legacy-peer-deps', 'npm'); run_cmd($grunt, 'grunt'); }