From 0491fc933cb539f528c508b895a2fe403911c084 Mon Sep 17 00:00:00 2001 From: Renegade334 Date: Wed, 21 Jan 2026 22:55:36 +0000 Subject: [PATCH] fix: ensure final line is LF-terminated --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 23922db..c24759a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -63,7 +63,7 @@ const appendNodeJSOverride = (outputLines: string[]) => { utils.extendArray(outputLines, ['}']); - return outputLines.join('\n'); + return outputLines.join('\n') + '\n'; }; interface GenerateOptions {