sinapse-ai 7.4.1 → 7.4.2
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.4.
|
|
11
|
-
generated_at: "2026-03-27T15:
|
|
10
|
+
version: 7.4.2
|
|
11
|
+
generated_at: "2026-03-27T15:10:25.140Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
13
|
file_count: 1101
|
|
14
14
|
files:
|
package/package.json
CHANGED
|
@@ -463,16 +463,14 @@ async function runWizard(options = {}) {
|
|
|
463
463
|
};
|
|
464
464
|
} else {
|
|
465
465
|
// Interactive mode — 2-step flow
|
|
466
|
-
// Step 1: Language selection
|
|
466
|
+
// Step 1: Language selection (always ask — improves UX)
|
|
467
467
|
const existingLanguage = await getExistingLanguage();
|
|
468
|
-
|
|
468
|
+
const langQuestion = getLanguageQuestion();
|
|
469
469
|
if (existingLanguage) {
|
|
470
|
-
|
|
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;
|
|
470
|
+
langQuestion.default = existingLanguage;
|
|
475
471
|
}
|
|
472
|
+
const langAnswer = await inquirer.prompt([langQuestion]);
|
|
473
|
+
const language = langAnswer.language;
|
|
476
474
|
setLanguage(language);
|
|
477
475
|
|
|
478
476
|
// Step 2: LLM selection
|