betterstart-cli 0.0.52 → 0.0.53

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/cli.js CHANGED
@@ -24478,9 +24478,6 @@ function withScope(args, scope) {
24478
24478
  function readLinkedProjectId(cwd) {
24479
24479
  return readLinkedProjectJson(cwd)?.projectId;
24480
24480
  }
24481
- function readLinkedProjectName(cwd) {
24482
- return readLinkedProjectJson(cwd)?.projectName;
24483
- }
24484
24481
  function readLinkedProjectJson(cwd) {
24485
24482
  try {
24486
24483
  const projectJsonPath = path46.join(cwd, ".vercel", "project.json");
@@ -25085,8 +25082,7 @@ async function runVercelDeployFlow(options) {
25085
25082
  printManualDeployHint();
25086
25083
  return { ok: false };
25087
25084
  }
25088
- const linkedName = readLinkedProjectName(options.cwd);
25089
- const url = linkedName ? `https://${linkedName}.vercel.app` : deploy.url;
25085
+ const url = deploy.url;
25090
25086
  deploySpinner.stop(url ? `Deployed ${pc6.cyan(url)}` : "Deployed to Vercel");
25091
25087
  return { ok: true, url, syncedEnvKeys: sync.synced };
25092
25088
  } catch (error) {