; This is a self-contained dev harness, not part of the root pnpm workspace.
; ignore-workspace=true prevents pnpm from walking up to the monorepo root
; and trying to install every workspace package (which pulls unrelated deps
; like `sharp` that have no business being on the smolmix dev path).
ignore-workspace=true

; pnpm 11+ runs a "deps status check" before every `pnpm run <script>` that
; auto-invokes `pnpm install` if the lockfile looks stale. That pre-check
; runs BEFORE script-level flags are evaluated, so passing `--ignore-workspace`
; to `pnpm start` doesn't stop it from walking up to the workspace root.
; Disable the check entirely here: this is a dev-only harness, devs can
; explicitly `pnpm install --ignore-workspace` when they need to refresh deps.
verify-deps-before-run=false
