mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
fix: never wrap lines in the lockfile
This commit is contained in:
5
.changeset/six-hornets-lie.md
Normal file
5
.changeset/six-hornets-lie.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@pnpm/lockfile-file": patch
|
||||
---
|
||||
|
||||
Never wrap lines in the lockfile.
|
||||
@@ -25,7 +25,7 @@ async function writeFileAtomic (filename: string, data: string) {
|
||||
|
||||
const LOCKFILE_YAML_FORMAT = {
|
||||
blankLines: true,
|
||||
lineWidth: 1000,
|
||||
lineWidth: -1, // This is setting line width to never wrap
|
||||
noCompatMode: true,
|
||||
noRefs: true,
|
||||
sortKeys: false,
|
||||
|
||||
Reference in New Issue
Block a user