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)