repowise 0.1.62 → 0.1.63
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/bin/repowise.js +4 -2
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -1422,9 +1422,8 @@ async function selectAiTools() {
|
|
|
1422
1422
|
{ name: "Other (manual setup)", value: "other" }
|
|
1423
1423
|
];
|
|
1424
1424
|
while (true) {
|
|
1425
|
-
console.log(chalk2.dim(" Use Space to select, Enter to continue.\n"));
|
|
1426
1425
|
const selected = await checkbox({
|
|
1427
|
-
message: chalk2.bold("Which AI tools do you use?"),
|
|
1426
|
+
message: chalk2.bold("Which AI tools do you use?") + chalk2.dim(" (Space to select, Enter to continue)"),
|
|
1428
1427
|
choices
|
|
1429
1428
|
});
|
|
1430
1429
|
if (selected.length === 0) {
|
|
@@ -1933,6 +1932,9 @@ var ProgressRenderer = class {
|
|
|
1933
1932
|
console.log("");
|
|
1934
1933
|
console.log(chalk4.cyan.bold(" \u2500\u2500 RepoWise Context Generation \u2500\u2500"));
|
|
1935
1934
|
console.log(chalk4.dim(" Building AI-optimized context files from your codebase."));
|
|
1935
|
+
console.log(
|
|
1936
|
+
chalk4.cyan(" \u2615 This takes a few minutes \u2014 grab a coffee, we'll handle the rest!")
|
|
1937
|
+
);
|
|
1936
1938
|
}
|
|
1937
1939
|
if (this.lastFileStatusLineCount > 0) {
|
|
1938
1940
|
process.stdout.write(`\x1B[${this.lastFileStatusLineCount}A`);
|