fix(deps): regenerate package-lock.json#647
Merged
brian-smith-tcril merged 1 commit intoopenedx:masterfrom Feb 13, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #647 +/- ##
=======================================
Coverage 86.00% 86.00%
=======================================
Files 27 27
Lines 443 443
Branches 104 104
=======================================
Hits 381 381
Misses 61 61
Partials 1 1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
arbrandes
approved these changes
Feb 13, 2026
Regenerating the lockfile to pick up latest compatible @edx/frontend-component-footer (14.9.5). Removed direct jest devDependency (^30.0.0) which was causing ts-jest to be nested under @openedx/frontend-build instead of hoisted to the top level. frontend-build already provides jest, so the direct dep was unnecessary and caused module resolution failures. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
f4daf88 to
94004c3
Compare
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.
Regenerating the lockfile to pick up latest compatible
@edx/frontend-component-footer(14.9.5).What I ran to regenerate the lockfile:
Additional fix: remove direct jest devDependency
The repo had
"jest": "^30.0.0"as a direct devDependency, which caused npm to nestts-jestunder@openedx/frontend-build/node_modules/instead of hoisting it to the top level. This broke Jest's module resolution since@openedx/frontend-build's jest config doesrequire('ts-jest/presets')expecting it at the root.Removed the direct jest dep since
@openedx/frontend-buildalready provides jest.This PR was created by Claude Code. See the plan for details.