Fix line-endings in `package.json`

Because I just spent far too much time trying to figure out why `npm
install` added carriage returns to `package-lock.json` and then `git`
would complain:

> warning: in the working copy of 'package-lock.json', CRLF will be
replaced by LF the next time Git touches it

This is simply the result of running:

    git add --renormalize package.json

Since the attributes on that file set line endings to simply `\n`:

    $ git check-attr -a package.json
    package.json: text: auto
    package.json: eol: lf
This commit is contained in:
Matthew Hughes 2025-07-30 20:10:22 +01:00
parent 8e57b58e57
commit 8278a8ef27
1 changed files with 55 additions and 55 deletions