openzca 0.1.40 → 0.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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -622,7 +622,9 @@ function parseTextStyles(input) {
622
622
  continue;
623
623
  }
624
624
  if (inCodeBlock) {
625
- codeOutputLineIndices.add(processedLines.length);
625
+ const outputLineIndex = processedLines.length;
626
+ codeOutputLineIndices.add(outputLineIndex);
627
+ lineStyles.push({ lineIndex: outputLineIndex, style: TextStyle.Indent, indentSize: 1 });
626
628
  processedLines.push(normalizeCodeBlockLeadingWhitespace(line));
627
629
  continue;
628
630
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzca",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Open-source zca-compatible CLI to integrate Zalo with OpenClaw",
5
5
  "type": "module",
6
6
  "bin": {