From d51398a38eff9534259337f1b64f8e91e838ab0a Mon Sep 17 00:00:00 2001 From: BIT SWCHA <12138373-BITSWCHA@users.noreply.gitlab.com> Date: Mon, 25 Jul 2022 22:08:11 +0000 Subject: [PATCH] Line 9 changed from: task: () => exec.in('front', 'npm', ['install']) to: task: () => exec.in('front', 'npm', ['install', '--legacy-peer-deps']) otherwise this project fails a "minds install" build with current nodejs/npm/npx builds. --- local/tasks/build-front.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/tasks/build-front.js b/local/tasks/build-front.js index ec349135fb..42007ace62 100644 --- a/local/tasks/build-front.js +++ b/local/tasks/build-front.js @@ -6,7 +6,7 @@ module.exports = { task: () => new Listr([ { title: 'Installing dependencies', - task: () => exec.in('front', 'npm', ['install']) + task: () => exec.in('front', 'npm', ['install', '--legacy-peer-deps']) }, { title: 'Building app',