From 878f1d89197f3472cc73348d06d7998ab5e58a06 Mon Sep 17 00:00:00 2001 From: ThatGuySam Date: Sat, 12 Aug 2023 14:01:33 -0500 Subject: [PATCH] Use pnpm for vercel build script --- scripts/vercel-build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' } ) }