kodu 1.1.20 → 1.1.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kodu",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "High-performance CLI to prepare codebase for LLMs, automate reviews, and draft commits.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -200,8 +200,8 @@ export class OpsRoutesCommand extends CommandRunner {
200
200
  ' if not domain_re.search(text):',
201
201
  ' sys.stderr.write("Route not found")',
202
202
  ' sys.exit(4)',
203
- ' text = domain_re.sub("\n", text, count=1)',
204
- ' text = re.sub(r"\\n{3,}", "\n\n", text)',
203
+ ' text = domain_re.sub("\\n", text, count=1)',
204
+ ' text = re.sub(r"\\n{3,}", "\\n\\n", text)',
205
205
  ' text = re.sub(r"^\\n+", "", text)',
206
206
  'elif action == "update":',
207
207
  ' match = domain_re.search(text)',