Skip to content

Commit

Permalink
Line 9 changed from:
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
BIT SWCHA authored and BIT SWCHA committed Jul 25, 2022
1 parent af9e8a3 commit d51398a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion local/tasks/build-front.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit d51398a

Please sign in to comment.