Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel3108 committed Nov 17, 2024
1 parent 64009d6 commit 5db2662
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/update-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ import { execSync } from 'node:child_process';
import fs from 'node:fs';

async function updateDependencies() {
// update all packages present in `package.json`
execSync('pnpm update --recursive', { stdio: 'inherit' });

// update all packages that are used during scaffolding of `addons`
await updateAddonDependencies();

// re-install all dependencies
execSync('pnpm install', { stdio: 'inherit' });
}

Expand Down

0 comments on commit 5db2662

Please sign in to comment.