fix: remove console logs

This commit is contained in:
lucas-neynar 2025-03-21 14:21:05 -07:00
parent 28cafb2808
commit e01d091c66
No known key found for this signature in database

View File

@ -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)