Skip to content

Instantly share code, notes, and snippets.

@techyaura
Created July 18, 2025 03:41
Show Gist options
  • Save techyaura/3914bdd6ec439d86cee7729cca6599b6 to your computer and use it in GitHub Desktop.
Save techyaura/3914bdd6ec439d86cee7729cca6599b6 to your computer and use it in GitHub Desktop.
overrides_example.json
{
"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