-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathbunfig.toml
More file actions
31 lines (30 loc) · 1.19 KB
/
Copy pathbunfig.toml
File metadata and controls
31 lines (30 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[test]
# Isolates SUPERSET_HOME_DIR so a test can never write the developer's real
# ~/.superset. See scripts/test-preload.ts for what went wrong without it.
preload = ["./scripts/test-preload.ts"]
[install]
linker = "isolated" # Prevent hoisting from resolving `path-scurry@2` to `lru-cache@6` (missing `LRUCache`), which breaks the `@superset/desktop` postinstall native rebuild.
exact = true
minimumReleaseAge = 259200
# Expo SDK 57 landed inside the 3-day window. CI installs frozen from the
# lockfile and is unaffected, but a fresh `bun install` re-resolves and fails on
# every one of these. Excluding them keeps the repo installable from scratch.
# Remove once the pins age past the window — they are exact, so this list only
# ever covers versions we already chose.
# @vercel/sandbox: the sandbox SDK ships fixes we depend on within days, and the
# pin is exact, so the guard would only ever delay a version we already chose.
minimumReleaseAgeExcludes = [
"@vercel/sandbox",
"@expo/ui",
"@pierre/diffs",
"expo",
"expo-asset",
"expo-constants",
"expo-dev-client",
"expo-file-system",
"expo-image-manipulator",
"expo-image-picker",
"expo-linking",
"expo-modules-core",
"expo-router",
]