@cline/core 0.0.79 → 0.0.80

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Line-ending normalization for files created from scratch, shared by the
3
+ * file-writing executors (editor, apply_patch). Internal to the executors.
4
+ *
5
+ * Models emit LF-only text (reads strip "\r", so they never see a file's
6
+ * CRLF endings). Existing files keep their own detected EOL, but a new file
7
+ * has no EOL to preserve: use CRLF on Windows unless the content already
8
+ * contains a "\r" and thereby chose its own endings
9
+ * (github.com/cline/cline/issues/13504). No-op on LF platforms.
10
+ */
11
+ export declare function normalizeNewFileLineEndings(content: string): string;