* The version range that we support for a given package. The strings should be * standard semver strings.
| 13 | * standard semver strings. |
| 14 | */ |
| 15 | interface DepVersionRange { |
| 16 | minVersion: string; |
| 17 | recommendedVersion: string; |
| 18 | /** |
| 19 | * Max version is optional because we aren't always worried about upgrades. |
| 20 | * This should be set for packages where major version upgrades have |
| 21 | * historically caused problems, or when we've identified a specific issue |
| 22 | * that requires us to stay at or below a certain version. Note that |
| 23 | * `NodeLazyRequire.ensure` only checks the major version. |
| 24 | */ |
| 25 | maxVersion?: string; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * A manifest for lazily-loaded dependencies, mapping dependency names to |
nothing calls this directly
no outgoing calls
no test coverage detected