diff --git a/scripts/vercel-build.js b/scripts/vercel-build.js index c3c045b..0fa76ba 100644 --- a/scripts/vercel-build.js +++ b/scripts/vercel-build.js @@ -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' } ) }