lupacode 0.2.3 → 0.2.4

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/bin/lupacode CHANGED
@@ -3,4 +3,5 @@ import dotenv from "dotenv";
3
3
 
4
4
  dotenv.config({ quiet: true });
5
5
 
6
+ // @ts-expect-error - dist/index.js is a Bun bundle with no exports
6
7
  await import("../dist/index.js");
package/dist/index.js CHANGED
@@ -97541,6 +97541,8 @@ function groupConsecutiveParts(parts) {
97541
97541
  const groups = [];
97542
97542
  for (let i = 0;i < parts.length; i++) {
97543
97543
  const part = parts[i];
97544
+ if (part.type === "step-start")
97545
+ continue;
97544
97546
  const lastGroup = groups[groups.length - 1];
97545
97547
  if (lastGroup && isToolPart(part) && isToolPart(lastGroup.parts[0])) {
97546
97548
  lastGroup.parts.push(part);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lupacode",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "AI-powered terminal coding assistant",
5
5
  "type": "module",
6
6
  "bin": {