@creativeintelligence/abbie 0.1.10 → 0.1.11
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/commands/login.js +13 -7
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -87,15 +87,21 @@ If already authenticated, shows current status. Use --force to re-authenticate.`
|
|
|
87
87
|
// Step 2: Open browser
|
|
88
88
|
const webUrl = getWebUrl();
|
|
89
89
|
const authUrl = `${webUrl}/auth/cli?code=${code}`;
|
|
90
|
+
// Logo + auth card
|
|
90
91
|
this.log("");
|
|
91
|
-
this.log("
|
|
92
|
-
this.log("
|
|
93
|
-
this.log(
|
|
94
|
-
this.log(
|
|
95
|
-
this.log("
|
|
96
|
-
this.log("
|
|
92
|
+
this.log(" \x1b[2m⣿⣿⣿⡿⠿⣿⣿⣿⣿⣿⣿⠿⢿⣿⣿⣿\x1b[0m");
|
|
93
|
+
this.log(" \x1b[2m⣿⡟⠁⠀⠀⠀⠉⠙⠛⠉⠀⠀⠀⠈⢻⣿\x1b[0m");
|
|
94
|
+
this.log(" \x1b[2m⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿\x1b[0m");
|
|
95
|
+
this.log(" \x1b[2m⣿⣿⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⣿⣿\x1b[0m");
|
|
96
|
+
this.log(" \x1b[2m⣿⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣿\x1b[0m \x1b[1mabbie\x1b[0m login");
|
|
97
|
+
this.log(" \x1b[2m⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿\x1b[0m");
|
|
98
|
+
this.log(" \x1b[2m⣿⣿⡀⠀⠀⠀⠀⣀⣀⠀⠀⠀⠀⢀⣿⣿\x1b[0m");
|
|
99
|
+
this.log(" \x1b[2m⣿⣿⣿⣶⣶⣶⣿⣿⣿⣿⣶⣶⣶⣿⣿⣿\x1b[0m");
|
|
97
100
|
this.log("");
|
|
98
|
-
this.log(` ${
|
|
101
|
+
this.log(` Code \x1b[1m${code}\x1b[0m`);
|
|
102
|
+
this.log(` Device ${device.hostname}`);
|
|
103
|
+
this.log("");
|
|
104
|
+
this.log(` \x1b[2m${authUrl}\x1b[0m`);
|
|
99
105
|
this.log("");
|
|
100
106
|
if (flags.open) {
|
|
101
107
|
try {
|
package/oclif.manifest.json
CHANGED