Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update bunfig.toml schema #4393

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading