Feature Request Checklist
Overview
it would be nice if the config for restrict-dependency-ranges supported a rangeType that enforced only the following symbols: >, >=, <, <=
Additional Info
in my project, we don't need to worry about pinning dependencies in package.json because the dependencies will always be installed using the locked versions from package-lock.json. this is because my project is a bundled application, not a published npm package.
this makes it much easier for us to bump our dependencies because we just run npm update to get the latest versions of all our dependencies, and if we encounter any breaking changes that we can't resolve, only then do we add an upper bound to that dependency in our package.json (using < or <=)
Feature Request Checklist
Overview
it would be nice if the config for
restrict-dependency-rangessupported arangeTypethat enforced only the following symbols:>,>=,<,<=Additional Info
in my project, we don't need to worry about pinning dependencies in
package.jsonbecause the dependencies will always be installed using the locked versions frompackage-lock.json. this is because my project is a bundled application, not a published npm package.this makes it much easier for us to bump our dependencies because we just run
npm updateto get the latest versions of all our dependencies, and if we encounter any breaking changes that we can't resolve, only then do we add an upper bound to that dependency in ourpackage.json(using<or<=)