@outputai/cli 0.1.4-dev.0 → 0.1.5-next.24b9996.0
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.
|
@@ -338,11 +338,11 @@ const buildDebugTreeLines = (node, depth, isLast, prefix) => {
|
|
|
338
338
|
const indent = isRoot ? '' : prefix + connector;
|
|
339
339
|
const lines = [indent + getDebugNodeInfo(node)];
|
|
340
340
|
const detailPrefix = isRoot ? ' ' : prefix + (isLast ? TREE_CHARS.DETAIL_LAST : TREE_CHARS.DETAIL_BRANCH);
|
|
341
|
-
if (typeof node === 'object'
|
|
341
|
+
if (typeof node === 'object') {
|
|
342
342
|
lines.push(...getDebugNodeDetails(node, detailPrefix));
|
|
343
343
|
}
|
|
344
344
|
const childPrefix = isRoot ? '' : prefix + (isLast ? TREE_CHARS.SPACE : TREE_CHARS.VERTICAL);
|
|
345
|
-
if (typeof node === 'object'
|
|
345
|
+
if (typeof node === 'object') {
|
|
346
346
|
const debugNode = node;
|
|
347
347
|
if (Array.isArray(debugNode.children)) {
|
|
348
348
|
debugNode.children.forEach((child, i) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5-next.24b9996.0",
|
|
4
4
|
"description": "CLI for Output.ai workflow generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"log-update": "7.2.0",
|
|
34
34
|
"semver": "7.7.4",
|
|
35
35
|
"yaml": "^2.7.1",
|
|
36
|
-
"@outputai/
|
|
37
|
-
"@outputai/
|
|
38
|
-
"@outputai/
|
|
36
|
+
"@outputai/evals": "0.1.5-next.24b9996.0",
|
|
37
|
+
"@outputai/llm": "0.1.5-next.24b9996.0",
|
|
38
|
+
"@outputai/credentials": "0.1.5-next.24b9996.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/cli-progress": "3.11.6",
|