-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump the npm_and_yarn group across 2 directories with 3 updates #94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ | |
| "ethers": "^6.12.0", | ||
| "fastify": "^5.8.3", | ||
| "openai": "^6.17.0", | ||
| "pdf2json": "^3.1.4", | ||
| "pdf2json": "^3.2.2", | ||
| "pdfkit": "^0.15.0", | ||
|
Comment on lines
24
to
26
|
||
| "prom-client": "^15.1.3", | ||
| "zod": "^3.23.8" | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because this repo uses npm workspaces (and CI runs
npm cifrom the repo root), changingapps/api/package.jsonwithout also updating the rootpackage-lock.jsonwill leave the workspace lock metadata out of sync (root lock still pinsapps/apitopdf2json: ^3.1.4). This will typically causenpm cito fail or continue installing the old version. Regenerate the root lockfile from the repo root so it reflects the updatedapps/apidependencies (or otherwise ensure there is a single source of truth for lockfiles).