repowisestage 0.0.56 → 0.0.58
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 +15 -11
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -9676,6 +9676,8 @@ async function startListener() {
|
|
|
9676
9676
|
const freshConfig = await getListenerConfig();
|
|
9677
9677
|
config2.repos = freshConfig.repos;
|
|
9678
9678
|
config2.lspOverrides = freshConfig.lspOverrides;
|
|
9679
|
+
config2.lspEnabled = freshConfig.lspEnabled;
|
|
9680
|
+
config2.lspAutoWarm = freshConfig.lspAutoWarm;
|
|
9679
9681
|
} catch {
|
|
9680
9682
|
}
|
|
9681
9683
|
}
|
|
@@ -11491,20 +11493,22 @@ async function create() {
|
|
|
11491
11493
|
useFreeRescan = true;
|
|
11492
11494
|
} else if (pricing.allowed) {
|
|
11493
11495
|
spinner.stop();
|
|
11494
|
-
const
|
|
11495
|
-
|
|
11496
|
-
|
|
11497
|
-
|
|
11498
|
-
|
|
11499
|
-
|
|
11500
|
-
|
|
11501
|
-
)
|
|
11502
|
-
|
|
11503
|
-
|
|
11496
|
+
const lines = [
|
|
11497
|
+
"\n This repository already has full context.",
|
|
11498
|
+
" A full rescan re-runs the complete AI analysis",
|
|
11499
|
+
" (knowledge graph + all context docs).",
|
|
11500
|
+
"",
|
|
11501
|
+
" Billed on ACTUAL processing usage after completion."
|
|
11502
|
+
];
|
|
11503
|
+
if (pricing.lastFullScanCost && pricing.lastFullScanCost > 0) {
|
|
11504
|
+
lines.push(
|
|
11505
|
+
` (For reference, your last full scan used ~$${pricing.lastFullScanCost.toFixed(0)} of processing.)`
|
|
11506
|
+
);
|
|
11504
11507
|
}
|
|
11508
|
+
console.log(chalk8.yellow(lines.join("\n")));
|
|
11505
11509
|
const { confirm: confirm3 } = await import("@inquirer/prompts");
|
|
11506
11510
|
const proceed = await confirm3({
|
|
11507
|
-
message: "Proceed with
|
|
11511
|
+
message: "Proceed with full rescan?",
|
|
11508
11512
|
default: false
|
|
11509
11513
|
});
|
|
11510
11514
|
if (!proceed) {
|