Summary
package.json pins "packageManager": "pnpm@8.5.0", and pnpm-lock.yaml is still lockfileVersion: '6.0'. pnpm 8 has reached end-of-life, so distributions and downstream packagers that build the @caddyserver/caddyfile-language-server workspace from source are being pushed to drop pnpm 8 from their toolchains.
Why this matters
Newer pnpm (10/11) refuses to use the lockfileVersion: '6.0' lockfile (it's ignored as incompatible), so a frozen-lockfile install fails outright. Anyone building from source with a current pnpm therefore can't do so without first regenerating the lockfile — which is exactly the situation in nixpkgs, where caddyfile-language-server is one of the last consumers keeping the EOL pnpm_8 package alive.
Suggested change
- Bump
packageManager to pnpm@10 or pnpm@11.
- Regenerate
pnpm-lock.yaml with the new pnpm (pnpm install --lockfile-only), which upgrades it to lockfileVersion: '9.0'.
- Verify CI / the
pnpm --filter=@caddyserver/caddyfile-language-server run build workflow still passes.
This keeps the project on a supported pnpm and unblocks source-based packagers. Happy to open a PR if that's helpful.
Summary
package.jsonpins"packageManager": "pnpm@8.5.0", andpnpm-lock.yamlis stilllockfileVersion: '6.0'. pnpm 8 has reached end-of-life, so distributions and downstream packagers that build the@caddyserver/caddyfile-language-serverworkspace from source are being pushed to drop pnpm 8 from their toolchains.Why this matters
Newer pnpm (10/11) refuses to use the
lockfileVersion: '6.0'lockfile (it's ignored as incompatible), so a frozen-lockfile install fails outright. Anyone building from source with a current pnpm therefore can't do so without first regenerating the lockfile — which is exactly the situation in nixpkgs, wherecaddyfile-language-serveris one of the last consumers keeping the EOLpnpm_8package alive.Suggested change
packageManagertopnpm@10orpnpm@11.pnpm-lock.yamlwith the new pnpm (pnpm install --lockfile-only), which upgrades it tolockfileVersion: '9.0'.pnpm --filter=@caddyserver/caddyfile-language-server run buildworkflow still passes.This keeps the project on a supported pnpm and unblocks source-based packagers. Happy to open a PR if that's helpful.