@ms-cloudpack/common-types
Advanced tools
Comparing version 0.8.0 to 0.8.1
@@ -79,3 +79,15 @@ import type { PackageJsonExports } from './PackageJson.js'; | ||
ignoredBundlerWarnings?: string[]; | ||
/** | ||
* Setting to control how the package is linked in the resolve map. | ||
*/ | ||
link?: { | ||
/** | ||
* Controls the behavior of duplicated dependencies in the resolve map by link. By default, `allow-duplication` | ||
* is used, which allows multiple versions of the same package to exist in the resolve map to satisfy the semver. | ||
* If `force-host-version` is used, the package will be deduplicated to the version of the host package ignoring | ||
* semver requirements. | ||
*/ | ||
duplicatedDependencyBehavior?: 'force-host-version' | 'allow-duplication'; | ||
}; | ||
} | ||
//# sourceMappingURL=PackageSettings.d.ts.map |
{ | ||
"name": "@ms-cloudpack/common-types", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "Common types for Cloudpack.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -663,2 +663,17 @@ { | ||
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users." | ||
}, | ||
"link": { | ||
"type": "object", | ||
"properties": { | ||
"duplicatedDependencyBehavior": { | ||
"type": "string", | ||
"enum": [ | ||
"force-host-version", | ||
"allow-duplication" | ||
], | ||
"description": "Controls the behavior of duplicated dependencies in the resolve map by link. By default, `allow-duplication` is used, which allows multiple versions of the same package to exist in the resolve map to satisfy the semver. If `force-host-version` is used, the package will be deduplicated to the version of the host package ignoring semver requirements." | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"description": "Setting to control how the package is linked in the resolve map." | ||
} | ||
@@ -665,0 +680,0 @@ }, |
@@ -126,2 +126,17 @@ { | ||
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users." | ||
}, | ||
"link": { | ||
"type": "object", | ||
"properties": { | ||
"duplicatedDependencyBehavior": { | ||
"type": "string", | ||
"enum": [ | ||
"force-host-version", | ||
"allow-duplication" | ||
], | ||
"description": "Controls the behavior of duplicated dependencies in the resolve map by link. By default, `allow-duplication` is used, which allows multiple versions of the same package to exist in the resolve map to satisfy the semver. If `force-host-version` is used, the package will be deduplicated to the version of the host package ignoring semver requirements." | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"description": "Setting to control how the package is linked in the resolve map." | ||
} | ||
@@ -628,2 +643,17 @@ }, | ||
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users." | ||
}, | ||
"link": { | ||
"type": "object", | ||
"properties": { | ||
"duplicatedDependencyBehavior": { | ||
"type": "string", | ||
"enum": [ | ||
"force-host-version", | ||
"allow-duplication" | ||
], | ||
"description": "Controls the behavior of duplicated dependencies in the resolve map by link. By default, `allow-duplication` is used, which allows multiple versions of the same package to exist in the resolve map to satisfy the semver. If `force-host-version` is used, the package will be deduplicated to the version of the host package ignoring semver requirements." | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"description": "Setting to control how the package is linked in the resolve map." | ||
} | ||
@@ -630,0 +660,0 @@ }, |
@@ -664,2 +664,17 @@ { | ||
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users." | ||
}, | ||
"link": { | ||
"type": "object", | ||
"properties": { | ||
"duplicatedDependencyBehavior": { | ||
"type": "string", | ||
"enum": [ | ||
"force-host-version", | ||
"allow-duplication" | ||
], | ||
"description": "Controls the behavior of duplicated dependencies in the resolve map by link. By default, `allow-duplication` is used, which allows multiple versions of the same package to exist in the resolve map to satisfy the semver. If `force-host-version` is used, the package will be deduplicated to the version of the host package ignoring semver requirements." | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"description": "Setting to control how the package is linked in the resolve map." | ||
} | ||
@@ -666,0 +681,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
192274
3245