@viraatdas/rudder 1.1.40 → 1.1.41
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/dist/native/rudder-native +0 -0
- package/dist/planner.js +1 -1
- package/package.json +1 -1
|
Binary file
|
package/dist/planner.js
CHANGED
|
@@ -59,7 +59,7 @@ export function parsePlanBlock(output) {
|
|
|
59
59
|
// First pass: build nodes, synthesizing ids n0.. for tasks without one.
|
|
60
60
|
const nodes = [];
|
|
61
61
|
const rawDepsById = new Map();
|
|
62
|
-
tasks.slice(0,
|
|
62
|
+
tasks.slice(0, 50).forEach((entry, index) => {
|
|
63
63
|
const raw = (entry ?? {});
|
|
64
64
|
const prompt = typeof raw.prompt === "string" ? raw.prompt.trim() : "";
|
|
65
65
|
if (!prompt) {
|
package/package.json
CHANGED