@taj-special/dravix-code 1.1.17 → 1.1.18
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/index.js +1 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -136,8 +136,6 @@ async function browserAuth() {
|
|
|
136
136
|
╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═══╝ ╚═╝╚═╝ ╚═╝`));
|
|
137
137
|
console.log(chalk.hex('#6366f1').bold(' Code') + DIM(` v${VERSION} · `) + P('AI-powered coding assistant'));
|
|
138
138
|
console.log(line + '\n');
|
|
139
|
-
console.log(' ' + colors.primary('◆') + ' ' + W.bold('Sign in to Dravix Code'));
|
|
140
|
-
console.log(' ' + DIM('Use your Dravix account to sign in to Dravix Code.') + '\n');
|
|
141
139
|
console.log(line);
|
|
142
140
|
console.log('\n ' + DIM('Step 1 — ') + W('Open this link in your browser:') + '\n');
|
|
143
141
|
console.log(' ' + colors.primary(link(authUrl)) + '\n');
|
|
@@ -222,6 +220,7 @@ async function main() {
|
|
|
222
220
|
}
|
|
223
221
|
if (justAuthenticated) {
|
|
224
222
|
console.clear();
|
|
223
|
+
console.log('\n ' + colors.success('✓') + ' ' + chalk.hex('#e2e8f0').bold('Sign in complete') + '\n');
|
|
225
224
|
}
|
|
226
225
|
const { name, email } = getSavedUser();
|
|
227
226
|
const cwd = (arg && !arg.startsWith('--')) ? path.resolve(arg) : process.cwd();
|
|
@@ -238,7 +237,6 @@ async function main() {
|
|
|
238
237
|
? chalk.hex('#fcd34d').bold('Plus')
|
|
239
238
|
: chalk.hex('#4b5563')('Free');
|
|
240
239
|
console.log(DIM(' ' + '─'.repeat(45)));
|
|
241
|
-
console.log(colors.muted(' Dravix ') + chalk.hex('#6366f1').bold('Code') + DIM(' v' + VERSION));
|
|
242
240
|
console.log(colors.muted(' User ') + W(name ?? 'Unknown') + DIM(' · ') + colors.muted(email ?? ''));
|
|
243
241
|
console.log(colors.muted(' Plan ') + planBadge);
|
|
244
242
|
if (usage) {
|