https://github.com/favware/skip-dependency
Skip pesky NodeJS dependencies with ease
https://github.com/favware/skip-dependency
Last synced: about 1 year ago
JSON representation
Skip pesky NodeJS dependencies with ease
- Host: GitHub
- URL: https://github.com/favware/skip-dependency
- Owner: favware
- License: mit
- Created: 2020-02-11T22:34:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-30T05:30:45.000Z (about 1 year ago)
- Last Synced: 2025-03-30T06:23:13.612Z (about 1 year ago)
- Language: JavaScript
- Size: 17.3 MB
- Stars: 21
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Skip Dependency
**_Note: This is only designed to work with Yarn (v1 / v2 / v3), not NPM, nor pnpm!!!_**
**Note2: This might work with npm and pnpm "overrides", however it is untested.**
This is for when some dependency you're pulling in is forcing some other dependency you just don't like.
You can use skip-dependency to force the skipping of said dependency.
Just add the following to your `package.json`:
```json
{
"resolutions": {
"package-you-really-want-to-skip": "npm:@favware/skip-dependency@latest"
}
}
```