MCPcopy
hub / github.com/stenciljs/core / DepVersionRange

Interface DepVersionRange

src/sys/node/node-lazy-require.ts:15–26  ·  view source on GitHub ↗

* The version range that we support for a given package. The strings should be * standard semver strings.

Source from the content-addressed store, hash-verified

13 * standard semver strings.
14 */
15interface 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected