repomind 0.5.1 → 0.5.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -40878,7 +40878,7 @@ function DiffStats({
40878
40878
  // src/ui/components/commit-card.tsx
40879
40879
  var import_jsx_runtime13 = __toESM(require_jsx_runtime(), 1);
40880
40880
  function formatSelection(f) {
40881
- if (f.selection === "all") return "all";
40881
+ if (!f.selection || f.selection === "all") return "all";
40882
40882
  return f.selection.map((h) => `h${h.hunkIndex}`).join(",");
40883
40883
  }
40884
40884
  function CommitCard(props) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repomind",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "type": "module",
5
5
  "description": "AI-powered git commit messages and repository insights",
6
6
  "keywords": ["git", "ai", "commit", "cli"],