repomind 0.2.1 → 0.2.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 +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -40903,7 +40903,8 @@ function SplitApp({
40903
40903
  return;
40904
40904
  }
40905
40905
  if (authToken) {
40906
- deps.apiPost("/split/confirm", { group }, authToken).catch(() => {
40906
+ deps.apiPost("/split/confirm", { group }, authToken).catch((err) => {
40907
+ console.error("[split-confirm] failed:", err.message ?? err);
40907
40908
  });
40908
40909
  }
40909
40910
  setCommitProgress(i + 1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repomind",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "description": "AI-powered git commit messages and repository insights",
6
6
  "keywords": ["git", "ai", "commit", "cli"],