diff --git a/src/schemas/json/bunfig.json b/src/schemas/json/bunfig.json index a93ffe523e3..97d114a52f9 100644 --- a/src/schemas/json/bunfig.json +++ b/src/schemas/json/bunfig.json @@ -193,9 +193,9 @@ }, "saveTextLockfile": { "$comment": "https://bun.sh/docs/runtime/bunfig#install-savetextlockfile", - "description": "Generate `bun.lock`, a human-readable text-based lockfile. Once generated, Bun will use this file instead of `bun.lockb`, choosing it over the binary lockfile if both are present.\n\nDefault false. In Bun v1.2.0 the default lockfile format will change to bun.lock.\nhttps://bun.sh/docs/runtime/bunfig#install-savetextlockfile", + "description": "If false, generate a binary `bun.lockb` instead of a text-based `bun.lock` file when running `bun install` and no lockfile is present\nDefault `true` (since Bun v1.2)\nhttps://bun.sh/docs/runtime/bunfig#install-savetextlockfile", "type": "boolean", - "default": false + "default": true }, "auto": { "$comment": "https://bun.sh/docs/runtime/bunfig#install-auto", @@ -206,7 +206,7 @@ }, "frozenLockfile": { "$comment": "https://bun.sh/docs/runtime/bunfig#install-frozenlockfile", - "description": "When true, `bun install` will not update `bun.lockb`. Default `false`. If `package.json` and the existing `bun.lockb` are not in agreement, this will error\nhttps://bun.sh/docs/runtime/bunfig#install-frozenlockfile", + "description": "When true, `bun install` will not update `bun.lock`. Default `false`. If `package.json` and the existing `bun.lock` are not in agreement, this will error\nhttps://bun.sh/docs/runtime/bunfig#install-frozenlockfile", "type": "boolean", "default": false }, @@ -315,7 +315,7 @@ "default": true }, "print": { - "description": "Whether to generate a non-Bun lockfile alongside `bun.lockb`. (A `bun.lockb` will always be created.) Currently `\"yarn\"` is the only supported value\nhttps://bun.sh/docs/runtime/bunfig#install-lockfile", + "description": "Whether to generate a non-Bun lockfile alongside `bun.lock`. (A `bun.lock` will always be created.) Currently `\"yarn\"` is the only supported value\nhttps://bun.sh/docs/runtime/bunfig#install-lockfile", "type": "string", "const": "yarn" }