A decentralized music tracking and discovery platform built on AT Protocol 🎵

Refine CLI error messages

Capitalize "DID" in the handle error and remove URL underline styling

+2 -2
+2 -2
apps/cli/src/lib/getDidAndHandle.ts
··· 10 10 11 11 if (!handle) { 12 12 console.error( 13 - `❌ No AT Proto handle or did provided, please provide one in the environment variables ${chalk.bold("ROCKSKY_HANDLE")} or ${chalk.bold("ROCKSKY_IDENTIFIER")}`, 13 + `❌ No AT Proto handle or DID provided, please provide one in the environment variables ${chalk.bold("ROCKSKY_HANDLE")} or ${chalk.bold("ROCKSKY_IDENTIFIER")}`, 14 14 ); 15 15 process.exit(1); 16 16 } 17 17 18 18 if (!env.ROCKSKY_PASSWORD) { 19 19 console.error( 20 - `❌ No app password provided, please provide one in the environment variable ${chalk.bold("ROCKSKY_PASSWORD")}\nYou can create one at ${chalk.blueBright.underline("https://bsky.app/settings/app-passwords")}`, 20 + `❌ No app password provided, please provide one in the environment variable ${chalk.bold("ROCKSKY_PASSWORD")}\nYou can create one at ${chalk.blueBright("https://bsky.app/settings/app-passwords")}`, 21 21 ); 22 22 process.exit(1); 23 23 }