@luckydraw/cumulus 0.30.26 → 0.30.27

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.
@@ -1801,9 +1801,10 @@
1801
1801
  '\n' +
1802
1802
  quote +
1803
1803
  '\n```\n' +
1804
- comment;
1804
+ comment +
1805
+ '\n';
1805
1806
  } else {
1806
- serialized = '> ' + quote.replace(/\n/g, '\n> ') + '\n' + comment;
1807
+ serialized = '> ' + quote.replace(/\n/g, '\n> ') + '\n' + comment + '\n';
1807
1808
  }
1808
1809
 
1809
1810
  var chip = document.createElement('span');
@@ -1904,9 +1905,10 @@
1904
1905
  '\n' +
1905
1906
  quote +
1906
1907
  '\n```\n' +
1907
- newComment;
1908
+ newComment +
1909
+ '\n';
1908
1910
  } else {
1909
- newSerialized = '> ' + quote.replace(/\n/g, '\n> ') + '\n' + newComment;
1911
+ newSerialized = '> ' + quote.replace(/\n/g, '\n> ') + '\n' + newComment + '\n';
1910
1912
  }
1911
1913
  chip.setAttribute('data-serialized', newSerialized);
1912
1914
  chip.setAttribute('data-comment', newComment);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luckydraw/cumulus",
3
- "version": "0.30.26",
3
+ "version": "0.30.27",
4
4
  "description": "RLM-based CLI chat wrapper for Claude with external history context management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",