-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-workspace.yaml
More file actions
27 lines (23 loc) · 1003 Bytes
/
Copy pathpnpm-workspace.yaml
File metadata and controls
27 lines (23 loc) · 1003 Bytes
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
# docs/ is intentionally a standalone pnpm project, not a member of the root
# expo monorepo workspace. This file exists to stop pnpm from traversing upward
# to the root pnpm-workspace.yaml. Without it, `pnpm install` from docs/ runs
# as a root-workspace install and never touches docs/ as standalone.
packages: []
# Explicitly allow install scripts for native-binary deps we depend on at
# build/runtime. Yarn ran these by default; pnpm blocks them unless whitelisted.
onlyBuiltDependencies:
- sharp
- workerd
- '@sentry/cli'
# Silence warnings for build scripts we intentionally skip. Matches the root
# expo monorepo's pattern for these packages.
ignoredBuiltDependencies:
- '@fingerprintjs/fingerprintjs-pro-react'
- esbuild
- unrs-resolver
# Reject package versions younger than 24 hours to reduce exposure to
# supply-chain attacks via freshly published malicious versions. Matches the
# root expo monorepo's gate.
minimumReleaseAge: 1440
minimumReleaseAgeExclude:
- '@expo/*'