We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6306375 commit e231346Copy full SHA for e231346
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,8 @@ export async function create(
108
109
]);
110
111
spinner.stop();
112
+ Deno.stdout.writeSync(new TextEncoder().encode("\x1b[1A\x1b[2K"));
113
+
114
console.log(
115
`${green("✔")} App '${app}' created in the '${org}' organization.\n`,
116
);
0 commit comments