sinapse-ai 7.3.0 → 7.3.1
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.
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 7.3.
|
|
11
|
-
generated_at: "2026-03-27T03:
|
|
10
|
+
version: 7.3.1
|
|
11
|
+
generated_at: "2026-03-27T03:20:12.782Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
13
|
file_count: 1082
|
|
14
14
|
files:
|
package/package.json
CHANGED
|
@@ -442,10 +442,6 @@ async function runWizard(options = {}) {
|
|
|
442
442
|
showWelcome();
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
// Hardcode PT-BR as default language
|
|
446
|
-
const language = options.language || 'pt';
|
|
447
|
-
setLanguage(language);
|
|
448
|
-
|
|
449
445
|
let answers = {};
|
|
450
446
|
|
|
451
447
|
// Auto-detect project type and tech preset (always)
|
|
@@ -454,6 +450,8 @@ async function runWizard(options = {}) {
|
|
|
454
450
|
|
|
455
451
|
if (options.quiet) {
|
|
456
452
|
// Quiet mode: Skip all prompts, use defaults
|
|
453
|
+
const language = options.language || 'en';
|
|
454
|
+
setLanguage(language);
|
|
457
455
|
answers = {
|
|
458
456
|
language,
|
|
459
457
|
userProfile: 'bob',
|
|
@@ -464,10 +462,20 @@ async function runWizard(options = {}) {
|
|
|
464
462
|
...options, // Merge any other options
|
|
465
463
|
};
|
|
466
464
|
} else {
|
|
467
|
-
// Interactive mode —
|
|
468
|
-
// Step 1:
|
|
465
|
+
// Interactive mode — 2-step flow
|
|
466
|
+
// Step 1: Language selection
|
|
467
|
+
const existingLanguage = await getExistingLanguage();
|
|
468
|
+
let language;
|
|
469
|
+
if (existingLanguage) {
|
|
470
|
+
language = existingLanguage;
|
|
471
|
+
console.log(`\n ${t('languageSkipped')}: ${language === 'pt' ? 'Português' : 'English'}\n`);
|
|
472
|
+
} else {
|
|
473
|
+
const langAnswer = await inquirer.prompt([getLanguageQuestion()]);
|
|
474
|
+
language = langAnswer.language;
|
|
475
|
+
}
|
|
476
|
+
setLanguage(language);
|
|
469
477
|
|
|
470
|
-
// Step 2:
|
|
478
|
+
// Step 2: LLM selection
|
|
471
479
|
const llmAnswer = await inquirer.prompt([getLLMQuestion()]);
|
|
472
480
|
|
|
473
481
|
// Derive IDEs from LLM choice
|