Use pnpm for vercel build script

This commit is contained in:
ThatGuySam 2023-08-12 14:01:33 -05:00
parent 72a6f23046
commit 878f1d8919

View file

@ -12,7 +12,7 @@ import { execSync } from 'child_process' // The exec import
for ( const stepScriptName of steps ) {
console.log( `Running step: ${ stepScriptName }` )
execSync( `npm run ${ stepScriptName }`, { stdio: 'inherit' } )
execSync( `pnpm run ${ stepScriptName }`, { stdio: 'inherit' } )
}