We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6306375 commit d7b6478Copy full SHA for d7b6478
1 file changed
util.ts
@@ -63,8 +63,9 @@ export async function create(
63
exchangeToken = res.exchangeToken;
64
}
65
66
+ console.log(`Visit ${url.href} to create a new application.`);
67
const spinner = new Spinner({
- message: `Visit ${url.href} to create a new application.`,
68
+ message: "",
69
color: "yellow",
70
});
71
spinner.start();
@@ -108,6 +109,9 @@ export async function create(
108
109
]);
110
111
spinner.stop();
112
+ // clear the previous line, which contains the URL
113
+ Deno.stdout.writeSync(new TextEncoder().encode("\x1b[1A\x1b[2K"));
114
+
115
console.log(
116
`${green("✔")} App '${app}' created in the '${org}' organization.\n`,
117
);
0 commit comments