From 51f8c92eb3b347ecaf07fbcb059612fa9de45f4d Mon Sep 17 00:00:00 2001 From: lucas-neynar Date: Tue, 11 Mar 2025 16:42:08 -0700 Subject: [PATCH] feat: update npx name to test value --- bin/index.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/index.js b/bin/index.js index 8118c1d..d442366 100755 --- a/bin/index.js +++ b/bin/index.js @@ -31,7 +31,7 @@ async function init() { const projectName = answers.projectName; const projectPath = path.join(process.cwd(), projectName); - console.log(`\nCreating a new Frames v2 app in ${projectPath}`); + console.log(`\nCreating a new Frames v2 app in ${projectPath}\n`); // Clone the repository execSync(`git clone ${REPO_URL} "${projectPath}"`); @@ -98,7 +98,7 @@ async function init() { 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'); + console.log(' npm run dev\n'); } init().catch((err) => { diff --git a/package.json b/package.json index 5e33fe3..cdad302 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "lint": "next lint" }, "bin": { - "frames-v2-quickstart": "./bin/index.js" + "testing-frames-v2-quickstart": "./bin/index.js" }, "dependencies": { "@farcaster/auth-kit": "^0.6.0",