codeep 1.1.1 → 1.1.3

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.
@@ -51,7 +51,8 @@ export function spinnerFail(text) {
51
51
  */
52
52
  export function stopSpinner() {
53
53
  if (currentSpinner) {
54
- currentSpinner.stop();
54
+ // Use stopAndPersist with empty symbol to leave a clean line
55
+ currentSpinner.stopAndPersist({ symbol: '' });
55
56
  currentSpinner = null;
56
57
  }
57
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",