Skip to content

Commit

Permalink
feat: update bunfig.toml schema (#4393)
Browse files Browse the repository at this point in the history
  • Loading branch information
okineadev authored Jan 28, 2025
1 parent 933f8c6 commit e3a2917
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/schemas/json/bunfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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
},
Expand Down Expand Up @@ -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"
}
Expand Down

0 comments on commit e3a2917

Please sign in to comment.