vibekit-auth 1.0.2 → 1.0.3
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/index.js +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -123,6 +123,8 @@ async function main() {
|
|
|
123
123
|
console.log(chalk_1.default.white(' Open Telegram and use /auto to start.'));
|
|
124
124
|
console.log(chalk_1.default.gray(' Your Claude subscription will be used for AI - no credits needed.'));
|
|
125
125
|
console.log();
|
|
126
|
+
console.log(chalk_1.default.dim(' You may now close this terminal.'));
|
|
127
|
+
console.log();
|
|
126
128
|
}
|
|
127
129
|
else {
|
|
128
130
|
uploadSpinner.fail(chalk_1.default.red('Upload failed'));
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -139,6 +139,8 @@ async function main() {
|
|
|
139
139
|
console.log(chalk.white(' Open Telegram and use /auto to start.'));
|
|
140
140
|
console.log(chalk.gray(' Your Claude subscription will be used for AI - no credits needed.'));
|
|
141
141
|
console.log();
|
|
142
|
+
console.log(chalk.dim(' You may now close this terminal.'));
|
|
143
|
+
console.log();
|
|
142
144
|
} else {
|
|
143
145
|
uploadSpinner.fail(chalk.red('Upload failed'));
|
|
144
146
|
console.log(chalk.red(` ${result.message}`));
|