diff --git a/README.md b/README.md index 06a7976..095870f 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ > A tool for quickly scaffolding an app with Magic baked-in!

- License ยท - Contributing Guide + License ยท + Contributing Guide

## ๐Ÿš€ Usage diff --git a/core/cli.ts b/core/cli.ts index 5558754..57d0136 100644 --- a/core/cli.ts +++ b/core/cli.ts @@ -49,7 +49,7 @@ export const ConsoleMessages = { }, gitHubIssuesLink: () => { - const msg = chalk`For feedback/questions/issues, please use {rgb(0,255,255) https://github.com/magiclabs/create-magic-app/issues/new/choose}`; + const msg = chalk`For feedback/questions/issues, please use {rgb(0,255,255) https://github.com/magiclabs/make-magic-app/issues/new/choose}`; return msg; }, }; @@ -70,9 +70,9 @@ async function sayHello() { const latestVersion = await getLatestMakeMagicVersion(); if (currentVersion !== latestVersion) { console.log( - chalk`{rgb(92,101,246) A new version of {bold make-magic} is available! {rgb(0,255,255) ${currentVersion}} โ†’ {rgb(0,255,255) ${latestVersion}}}`, + chalk`{rgb(92,101,246) A new version of {bold make-magic-app} is available! {rgb(0,255,255) ${currentVersion}} โ†’ {rgb(0,255,255) ${latestVersion}}}`, ); - console.log(chalk`{rgb(92,101,246) Run {rgb(0,255,255) npm i -g make-magic} to update!}\n\n`); + console.log(chalk`{rgb(92,101,246) Run {rgb(0,255,255) npm i -g make-magic-app} to update!}\n\n`); } else { console.log(chalk`\n {dim v${getMakeMagicVersion()}}\n\n`); } @@ -149,7 +149,7 @@ function getMakeMagicVersion() { } async function getLatestMakeMagicVersion() { - const latest = await got.get('https://registry.npmjs.org/make-magic/latest'); + const latest = await got.get('https://registry.npmjs.org/make-magic-app/latest'); return JSON.parse(latest.body).version; } diff --git a/scaffolds/nextjs-dedicated-wallet/template/src/components/ui/Header.tsx b/scaffolds/nextjs-dedicated-wallet/template/src/components/ui/Header.tsx index c661c08..13bc2f2 100644 --- a/scaffolds/nextjs-dedicated-wallet/template/src/components/ui/Header.tsx +++ b/scaffolds/nextjs-dedicated-wallet/template/src/components/ui/Header.tsx @@ -13,7 +13,7 @@ const Header = () => { -

Take a look at our developer guide to learn more about this template

+

Take a look at our developer guide to learn more about this template

); };