-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular/cli): retain existing EOL when updating JSON files
This commit updates the JSON utility to retain the existing EOF when updating files.
- Loading branch information
1 parent
94082a7
commit 640a76a
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
import { EOL } from 'node:os'; | ||
|
||
const CRLF = '\r\n'; | ||
const LF = '\n'; | ||
|
||
export function getEOL(content: string): string { | ||
const newlines = content.match(/(?:\r?\n)/g); | ||
|
||
if (newlines?.length) { | ||
const crlf = newlines.filter((l) => l === CRLF).length; | ||
const lf = newlines.length - crlf; | ||
|
||
return crlf > lf ? CRLF : LF; | ||
} | ||
|
||
return EOL; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters