agent-swarm-kit 1.1.124 → 1.1.125
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/build/index.cjs +2 -2
- package/build/index.mjs +2 -2
- package/package.json +1 -1
package/build/index.cjs
CHANGED
|
@@ -13582,7 +13582,7 @@ class DocService {
|
|
|
13582
13582
|
if (validations.length) {
|
|
13583
13583
|
result.push(`## Validations`);
|
|
13584
13584
|
result.push("");
|
|
13585
|
-
for (let i = 0; i !==
|
|
13585
|
+
for (let i = 0; i !== validations.length; i++) {
|
|
13586
13586
|
if (!validations[i].docDescription) {
|
|
13587
13587
|
continue;
|
|
13588
13588
|
}
|
|
@@ -13599,7 +13599,7 @@ class DocService {
|
|
|
13599
13599
|
}
|
|
13600
13600
|
result.push("");
|
|
13601
13601
|
}
|
|
13602
|
-
await writeFileAtomic(path.join(dirName,
|
|
13602
|
+
await writeFileAtomic(path.join(dirName, `./outline/${outlineSchema.outlineName}.md`), result.join("\n"));
|
|
13603
13603
|
}, {
|
|
13604
13604
|
maxExec: THREAD_POOL_SIZE,
|
|
13605
13605
|
delay: THREAD_POOL_DELAY,
|
package/build/index.mjs
CHANGED
|
@@ -13580,7 +13580,7 @@ class DocService {
|
|
|
13580
13580
|
if (validations.length) {
|
|
13581
13581
|
result.push(`## Validations`);
|
|
13582
13582
|
result.push("");
|
|
13583
|
-
for (let i = 0; i !==
|
|
13583
|
+
for (let i = 0; i !== validations.length; i++) {
|
|
13584
13584
|
if (!validations[i].docDescription) {
|
|
13585
13585
|
continue;
|
|
13586
13586
|
}
|
|
@@ -13597,7 +13597,7 @@ class DocService {
|
|
|
13597
13597
|
}
|
|
13598
13598
|
result.push("");
|
|
13599
13599
|
}
|
|
13600
|
-
await writeFileAtomic(join(dirName,
|
|
13600
|
+
await writeFileAtomic(join(dirName, `./outline/${outlineSchema.outlineName}.md`), result.join("\n"));
|
|
13601
13601
|
}, {
|
|
13602
13602
|
maxExec: THREAD_POOL_SIZE,
|
|
13603
13603
|
delay: THREAD_POOL_DELAY,
|