From e6b09ba94934110fead8de7f358f86fb4c88c19b Mon Sep 17 00:00:00 2001 From: lucas-neynar Date: Tue, 11 Mar 2025 16:29:50 -0700 Subject: [PATCH] fix: index.js logs --- bin/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/index.js b/bin/index.js index 825153e..46bf6c9 100755 --- a/bin/index.js +++ b/bin/index.js @@ -94,8 +94,8 @@ async function init() { execSync('git add .', { cwd: projectPath }); execSync('git commit -m "initial commit from frames-v2-quickstart"', { cwd: projectPath }); - console.log(`\n🖼️✨ Successfully created ${projectName} with git and dependencies installed! ✨🖼️\n`); - console.log('Next steps:'); + console.log(`\n🖼️✨ Successfully created frame ${projectName} with git and dependencies installed! ✨🖼️`); + console.log('\nTo run the app:'); console.log(` cd ${projectName}`); console.log(' npm run dev'); }