@changesets/types
Advanced tools
Comparing version 4.0.1 to 4.0.2
# @changesets/types | ||
## 4.0.2 | ||
### Patch Changes | ||
- [#668](https://github.com/atlassian/changesets/pull/668) [`9a993ba`](https://github.com/atlassian/changesets/commit/9a993ba09629c1620d749432520470cec49d3a96) Thanks [@marcodejongh](https://github.com/marcodejongh)! - Add `resolutions` to the `PackageJSON` type. | ||
## 4.0.1 | ||
@@ -4,0 +10,0 @@ |
@@ -43,2 +43,5 @@ declare const DEPENDENCY_TYPES: readonly ["dependencies", "devDependencies", "peerDependencies", "optionalDependencies"]; | ||
}; | ||
resolutions?: { | ||
[key: string]: string; | ||
}; | ||
private?: boolean; | ||
@@ -45,0 +48,0 @@ publishConfig?: { |
{ | ||
"name": "@changesets/types", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "Common types shared between changeset packages", | ||
@@ -5,0 +5,0 @@ "main": "dist/types.cjs.js", |
@@ -50,2 +50,3 @@ // NB: Bolt check uses a different dependnecy set to every other package. | ||
optionalDependencies?: { [key: string]: string }; | ||
resolutions?: { [key: string]: string }; | ||
private?: boolean; | ||
@@ -52,0 +53,0 @@ publishConfig?: { |
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
16841
220