Skip to content

Commit 643e651

Browse files
committed
chore(bunfig): restore minimumReleaseAge supply-chain gate with scoped excludes
1 parent 5e891da commit 643e651

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

bunfig.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
[install]
22
exact = true
3-
minimumReleaseAge = 0
3+
# Supply-chain gate: only install package versions published at least 7 days ago
4+
# (blocks freshly published, potentially compromised releases).
5+
minimumReleaseAge = 604800
6+
# @typescript/native-preview stays excluded permanently: it only publishes nightly
7+
# dev builds, so every version is structurally younger than any age gate.
8+
# typescript@7.0.2 and @typescript/typescript6@6.0.2 were vetted in #5521; they age
9+
# out of the gate on 2026-07-15 and 2026-07-13 — drop those two entries after that.
10+
minimumReleaseAgeExcludes = [
11+
"typescript",
12+
"@typescript/typescript6",
13+
"@typescript/native-preview",
14+
]
415

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

0 commit comments

Comments
 (0)