refactor(cli): remove debug logs

This commit is contained in:
Ayo Ayco 2024-12-07 10:40:15 +01:00
parent 86cf39daf7
commit 09cd38a481

View file

@ -6,12 +6,9 @@ import { execSync } from "node:child_process";
function build() { function build() {
consola.start("Building project..."); consola.start("Building project...");
console.log('jfklsdjfklds')
try { try {
execSync(`npx nitropack build`, { stdio: "inherit" }); execSync(`npx nitropack build`, { stdio: "inherit" });
console.log('called build')
} catch (err) { } catch (err) {
console.log('hyeyyy err9r')
consola.error(err); consola.error(err);
} }
} }