Skip to content

Commit

Permalink
chore: sync npm lock file by using legacy peer deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jun 19, 2024
1 parent 4c233dd commit e8b15ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/npm-utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ export function publishPackage(publishTagName, { cwd, otp, dryRun, stream }) {
* @returns {Promise<any>}
*/
export function syncLockFile({ cwd, dryRun }) {
return exec('npm', ['install', '--package-lock-only'], { cwd }, dryRun);
return exec('npm', ['install', '--package-lock-only', '--legacy-peer-deps'], { cwd }, dryRun);
}

0 comments on commit e8b15ac

Please sign in to comment.