@vocoder/cli 0.1.23 → 0.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin.mjs CHANGED
@@ -3609,16 +3609,13 @@ async function sync(options = {}) {
3609
3609
  " Run `npx @vocoder/cli init` to create a new project and key."
3610
3610
  );
3611
3611
  } else if (error.message.includes("VOCODER_API_KEY")) {
3612
- p8.log.warn(
3613
- "VOCODER_API_KEY is only needed for `vocoder sync` (CLI push)."
3614
- );
3615
- p8.log.info(" Create one at: https://vocoder.app/dashboard");
3616
- p8.log.info(' Then: export VOCODER_API_KEY="vc_..." or add it to .env');
3612
+ p8.log.info(" Get an API key at: https://vocoder.app/dashboard");
3613
+ p8.log.info(' Then add to .env: VOCODER_API_KEY="vcp_..."');
3617
3614
  p8.log.info("");
3618
3615
  p8.log.info(
3619
- " Note: If you use @vocoder/unplugin, `vocoder sync` is optional."
3616
+ " Note: if you use @vocoder/unplugin, `vocoder sync` is optional \u2014"
3620
3617
  );
3621
- p8.log.info(" Translations are fetched automatically at build time.");
3618
+ p8.log.info(" translations are fetched automatically at build time.");
3622
3619
  } else if (error.message.includes("git branch")) {
3623
3620
  p8.log.warn("Run from a git repository, or use:");
3624
3621
  p8.log.info(" vocoder sync --branch main");