Created
July 18, 2025 03:41
-
-
Save techyaura/3914bdd6ec439d86cee7729cca6599b6 to your computer and use it in GitHub Desktop.
overrides_example.json
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
{ | |
"name": "my-angular-app", | |
"version": "1.0.0", | |
"dependencies": { | |
"some-library": "^1.0.0", | |
"another-lib": "^2.0.0" | |
}, | |
"overrides": { | |
"left-pad": "1.3.0", // Forcing a direct dependency | |
"another-lib/lodash": "4.17.21", // Forcing a transitive dependency of another-lib | |
"some-library/some-nested-dep/moment": "2.29.1" // Forcing a deeply nested dependency | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment