Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
This PR updates the project's pnpm package manager configuration and fixes a typo in import paths. The changes include upgrading pnpm from version 9.2.0 to 10.28.1, adding security-focused workspace settings, correcting the filename from create-graphq-client.ts to create-graphql-client.ts, and adding project documentation files for AI coding agents.
Changes:
- Updated pnpm version from 9.2.0 to 10.28.1 with new security settings in pnpm-workspace.yaml
- Fixed typo in import paths:
create-graphq-client→create-graphql-client - Added AGENTS.md documentation and supporting files (CLAUDE.md, .gitallowed)
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updated packageManager field to pnpm@10.28.1 |
| pnpm-workspace.yaml | Added security settings: blockExoticSubdeps, minimumReleaseAge, and trustPolicy |
| src/lib/create-graphql-client.ts | New file with corrected spelling (previously create-graphq-client.ts) |
| src/server/procedure/procedure-with-graphql-client.ts | Updated import path to use corrected filename |
| src/providers/GraphQLProvider.tsx | Updated import path to use corrected filename |
| AGENTS.md | Added comprehensive project documentation for AI coding agents |
| CLAUDE.md | Added reference file pointing to AGENTS.md |
| .gitallowed | Added configuration to allow AGENTS.md |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "zod": "3.23.8" | ||
| }, | ||
| "packageManager": "pnpm@9.2.0", | ||
| "packageManager": "pnpm@10.28.1", |
There was a problem hiding this comment.
The packageManager field specifies pnpm version 10.28.1, but the engines.pnpm field in package.json still requires >=9. Consider updating the engines.pnpm field to >=10 or >=10.28.1 to ensure consistency with the packageManager version and prevent potential version mismatches.
216319c to
dadbe2d
Compare
|
Fixed build issue by enabling corepack: https://vercel.com/docs/builds/configure-a-build#corepack |
Summary
blockExoticSubdeps: trueminimumReleaseAge: 1440(24h)trustPolicy: no-downgrade