Skip to content
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
13 changes: 12 additions & 1 deletion bunfig.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
[install]
exact = true
minimumReleaseAge = 0
# Supply-chain gate: only install package versions published at least 7 days ago
# (blocks freshly published, potentially compromised releases).
minimumReleaseAge = 604800
Comment thread
greptile-apps[bot] marked this conversation as resolved.
# @typescript/native-preview stays excluded permanently: it only publishes nightly
# dev builds, so every version is structurally younger than any age gate.
# typescript@7.0.2 and @typescript/typescript6@6.0.2 were vetted in #5521; they age
# out of the gate on 2026-07-15 and 2026-07-13 — drop those two entries after that.
minimumReleaseAgeExcludes = [
"typescript",
"@typescript/typescript6",
"@typescript/native-preview",
]

[run]
env = { NEXT_PUBLIC_APP_URL = "http://localhost:3000" }
Loading