repomind 0.5.2 → 0.5.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -41190,7 +41190,7 @@ function SplitApp({
41190
41190
  try {
41191
41191
  await deps.resetStaging();
41192
41192
  for (const fileRef of group.files) {
41193
- if (fileRef.selection === "all") {
41193
+ if (!fileRef.selection || fileRef.selection === "all") {
41194
41194
  await deps.stageFile(fileRef.path);
41195
41195
  } else {
41196
41196
  const currentDiff = await deps.getFileDiff(fileRef.path);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repomind",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "type": "module",
5
5
  "description": "AI-powered git commit messages and repository insights",
6
6
  "keywords": ["git", "ai", "commit", "cli"],