Skip to content

Commit

Permalink
Merge pull request #1616 from SUI-Components/fix/studio-generate-install
Browse files Browse the repository at this point in the history
fix(packages/sui-studio): update studio postinstall
  • Loading branch information
andresz1 authored Jul 18, 2023
2 parents 4f071ce + 7f78df7 commit 6b16070
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/sui-studio/bin/sui-studio-generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,11 @@ export default () => <${componentInPascal} />
]).then(() => {
console.log(colors.gray(`[${packageName}]: Installing the dependencies`))
const install = spawn('npm', [
'install --legacy-peer-deps --no-audit --no-fund --production=false'
'install',
'--legacy-peer-deps',
'--no-audit',
'--no-fund',
'--production=false'
])

install.stdout.on('data', data =>
Expand Down

0 comments on commit 6b16070

Please sign in to comment.