@stilero/bankan 1.1.0 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stilero/bankan",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "description": "Run AI coding agents like a Kanban board. Plan, implement, review and ship code using parallel AI agents across your local repositories.",
6
6
  "license": "MIT",
@@ -1080,6 +1080,11 @@ export async function createPR(taskId) {
1080
1080
  await git.fetch('origin', 'main');
1081
1081
  await git.checkout(task.branch);
1082
1082
 
1083
+ // Discard any uncommitted changes left by the agent (e.g. package-lock.json
1084
+ // from npm installs during review) so they don't block the rebase.
1085
+ await git.raw(['checkout', '--', '.']);
1086
+ await git.raw(['clean', '-fd']);
1087
+
1083
1088
  try {
1084
1089
  await git.rebase(['origin/main']);
1085
1090
  } catch (err) {