vantuz 3.5.2 → 3.5.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/cli.js +4 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -152,8 +152,11 @@ async function runTUI() {
|
|
|
152
152
|
console.log(c('red', `\n🛑 ERİŞİM ENGELLENDİ: ${license.message}`));
|
|
153
153
|
console.log(c('yellow', 'Lütfen geçerli bir lisans anahtarı girin.'));
|
|
154
154
|
|
|
155
|
-
const key = await promptInput(c('cyan', 'Lisans
|
|
155
|
+
const key = await promptInput(c('cyan', 'Lisans Anahtarı: '));
|
|
156
|
+
console.log('[CLI] Key length:', key.length);
|
|
157
|
+
console.log('[CLI] Key prefix:', key.substring(0, 50));
|
|
156
158
|
const result = licenseManager.activate(key);
|
|
159
|
+
console.log('[CLI] Result:', JSON.stringify(result));
|
|
157
160
|
|
|
158
161
|
if (!result.success) {
|
|
159
162
|
console.log(c('red', `Hata: ${result.message}`));
|