chore: keep lockfile registry-agnostic - #1692
Merged
Merged
Conversation
Contributor
Greptile SummaryThis PR makes the repository lockfile registry-agnostic while retaining dependency versions, integrity hashes, and dependency relationships.
Confidence Score: 5/5The PR appears safe to merge because supported repository environments recognize the npm setting and no dependency semantics are changed. The changes only alter lockfile source metadata and repository npm configuration; supported Node/npm workflows remain compatible, and no concrete build, install, security, or runtime failure remains. Important Files Changed
Reviews (1): Last reviewed commit: "fix: scope npm config exception to repos..." | Re-trigger Greptile |
tribble
approved these changes
Sep 4, 2026
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.
HELP-722 requires committed public SDK lockfiles to be independent of the registry used to generate them. The current lockfile records registry-specific
resolvedURLs, which couples it to the effective install registry.This adds
omit-lockfile-registry-resolved=truewhile preserving the existing lockfile. The narrow.gitignoreexception allows the root npm configuration to be tracked without changing the broader ignore rule.Verification found 694 registry
resolvedentries removed and all 694 integrity values preserved. Versions, package records, dependency relationships, non-registry resolutions, and lockfile version are unchanged. There are zero Socket Firewall host references and zero semantic verifier violations.The branch was regenerated and checked with Node
v24.20.0and npm11.19.0:npm install --package-lock-only --ignore-scripts --no-audit --no-fund npm ci --registry=https://registry.npmjs.org/ npm run prettier npm run lint npm run typecheck npm run build npm testThe clean public-registry install left the lockfile unchanged. This is a draft for early inspection; no reviewer action is requested yet. After this change merges, the live downstream dependency-bump commands will be repeated against representative npm and pnpm AuthKit projects before the remaining SDK changes are approved.
HELP-722: https://linear.app/workos/issue/HELP-722