chore: update package-lock.json for Node.js v26#99
Open
clubpassmarbella wants to merge 3 commits into
Open
Conversation
Running npm install on Node v26 regenerates the lockfile with cleaner esbuild peer dependency resolution — removes the redundant top-level esbuild v0.28.0 peer entry and strips "peer": true flags from the @esbuild/* platform-specific optional binaries. No functional changes to runtime dependencies. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
npm install on Node v26 produces a cleaner lockfile — removes the redundant top-level esbuild v0.28.0 peer entry and strips "peer": true from @esbuild/* optional platform binaries. No runtime changes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
The current LTS version is Node.js 24 (not 26). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
package-lock.jsonafter runningnpm installon Node.js v26.0.0esbuildv0.28.0 peer dependency entry"peer": trueflags from@esbuild/*platform-specific optional binaries (resolved correctly without the flag on Node v26)Why
The existing lockfile was generated on an older Node version. On Node v26, npm resolves peer dependencies differently and produces a cleaner lockfile without the duplicate esbuild peer entries at the top level. No runtime behavior changes.
Test plan
npm installcompletes without errors on Node v26npm run devstarts the dev server correctlynpm run buildproduces a valid production build🤖 Generated with Claude Code