diff options
Diffstat (limited to 'scripts/smoke/cleanup.js')
-rw-r--r-- | scripts/smoke/cleanup.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/smoke/cleanup.js b/scripts/smoke/cleanup.js index a198ba56d..0d7db79f3 100644 --- a/scripts/smoke/cleanup.js +++ b/scripts/smoke/cleanup.js @@ -1,4 +1,4 @@ -/** @file Remove all smoke tests and may remove extra smoke-test dependencies from `yarn.lock`. */ +/** @file Remove all smoke tests and may remove extra smoke-test dependencies from `pnpm-lock.yaml`. */ // @ts-check @@ -37,9 +37,9 @@ async function run() { console.log(); - console.log('🤖', 'Resetting', 'yarn'); + console.log('🤖', 'Resetting', 'pnpm'); - await execa('yarn', [], { cwd: fileURLToPath(rootDir), stdout: 'inherit', stderr: 'inherit' }); + await execa('pnpm', ['install'], { cwd: fileURLToPath(rootDir), stdout: 'inherit', stderr: 'inherit' }); } /* Functionality |