We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e891da commit 643e651Copy full SHA for 643e651
1 file changed
bunfig.toml
@@ -1,6 +1,17 @@
1
[install]
2
exact = true
3
-minimumReleaseAge = 0
+# 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
+]
15
16
[run]
17
env = { NEXT_PUBLIC_APP_URL = "http://localhost:3000" }
0 commit comments