forked from leon-ai/leon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-workspace.yaml
More file actions
25 lines (18 loc) 路 927 Bytes
/
Copy pathpnpm-workspace.yaml
File metadata and controls
25 lines (18 loc) 路 927 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
# Leon setup depends on native/binary packages whose install scripts must run
dangerouslyAllowAllBuilds: true
# Leon validates and rebuilds native packages for its managed Node.js runtime.
# Restore package sources instead of trusting machine-global cached build output.
sideEffectsCache: false
# Fail early when the active Node.js version does not satisfy package engines
engineStrict: true
# Keep dependency versions pinned when adding packages
saveExact: true
# Do not let `pnpm run` auto-install dependencies before running scripts
verifyDepsBeforeRun: false
# Keep pnpm install output readable without cursor manipulation
reporter: append-only
# Always run install lifecycle scripts, even when dependencies are up to date
optimisticRepeatInstall: false
# pnpm 12 also skips lifecycle scripts on unchanged headless installs.
# Run setup after pulls that only change Leon's setup scripts.
preferFrozenLockfile: false