From e01d091c66058af545fc47b6cd7ef79b6b4ca6d9 Mon Sep 17 00:00:00 2001 From: lucas-neynar Date: Fri, 21 Mar 2025 14:21:05 -0700 Subject: [PATCH] fix: remove console logs --- scripts/deploy.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/deploy.js b/scripts/deploy.js index 21330ad..771a2ba 100755 --- a/scripts/deploy.js +++ b/scripts/deploy.js @@ -322,8 +322,6 @@ async function deployToVercel(useGitHub = false) { cwd: projectRoot, encoding: 'utf8' }); - console.log('inspectOutput'); - console.log(inspectOutput); // Extract project name from inspect output let projectName; @@ -451,8 +449,6 @@ async function deployToVercel(useGitHub = false) { .split('\n') .filter(line => line.includes('https://')); - console.log('Project lines:', projectLines); - // Find the line containing our project name const currentProject = projectLines.find(line => line.includes(projectName)