@devness/useai 0.5.24 → 0.5.25
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/index.js +12 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2681,7 +2681,7 @@ var VERSION;
|
|
|
2681
2681
|
var init_version = __esm({
|
|
2682
2682
|
"../shared/dist/constants/version.js"() {
|
|
2683
2683
|
"use strict";
|
|
2684
|
-
VERSION = "0.5.
|
|
2684
|
+
VERSION = "0.5.25";
|
|
2685
2685
|
}
|
|
2686
2686
|
});
|
|
2687
2687
|
|
|
@@ -17205,6 +17205,17 @@ async function fullRemoveFlow(tools, autoYes, explicit) {
|
|
|
17205
17205
|
}
|
|
17206
17206
|
}
|
|
17207
17207
|
}
|
|
17208
|
+
const anyRemaining = AI_TOOLS.some((t) => {
|
|
17209
|
+
try {
|
|
17210
|
+
return t.isConfigured();
|
|
17211
|
+
} catch {
|
|
17212
|
+
return false;
|
|
17213
|
+
}
|
|
17214
|
+
});
|
|
17215
|
+
if (anyRemaining) {
|
|
17216
|
+
console.log(source_default.dim("\nDone! Other tools still configured \u2014 daemon and hooks kept running.\n"));
|
|
17217
|
+
return;
|
|
17218
|
+
}
|
|
17208
17219
|
try {
|
|
17209
17220
|
removeClaudeCodeHooks();
|
|
17210
17221
|
console.log(source_default.green(" \u2713 Claude Code hooks removed"));
|