Skip to content

Commit

Permalink
fix: postinstall script
Browse files Browse the repository at this point in the history
  • Loading branch information
minenwerfer committed Mar 24, 2024
1 parent e4916fb commit b5de18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const moveFolder = async (workspace, origin) => {
const updateDependency = async (workspace, dependencies) => {
const proc = spawn(
'npm',
['install'].concat(dependencies),
['install'].concat(dependencies.map((dep) => `${dep}@latest`)),
workspace
? { cwd: workspace }
: {}
Expand Down

0 comments on commit b5de18f

Please sign in to comment.