@changesets/types
Advanced tools
Comparing version 0.3.1 to 0.4.0
# @changesets/types | ||
## 0.4.0 | ||
### Minor Changes | ||
- [`8f0a1ef`](https://github.com/atlassian/changesets/commit/8f0a1ef327563512f471677ef0ca99d30da009c0) [#183](https://github.com/atlassian/changesets/pull/183) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Add `PreState` type and `preState` property to `ReleasePlan` | ||
## 0.3.1 | ||
@@ -4,0 +10,0 @@ |
@@ -24,2 +24,3 @@ declare const DEPENDENCY_TYPES: readonly ["dependencies", "devDependencies", "peerDependencies", "optionalDependencies"]; | ||
releases: ComprehensiveRelease[]; | ||
preState: PreState | undefined; | ||
}; | ||
@@ -77,2 +78,10 @@ export declare type PackageJSON = { | ||
}; | ||
export declare type PreState = { | ||
mode: "pre" | "exit"; | ||
tag: string; | ||
initialVersions: { | ||
[pkgName: string]: string; | ||
}; | ||
changesets: string[]; | ||
}; | ||
export {}; |
{ | ||
"name": "@changesets/types", | ||
"version": "0.3.1", | ||
"version": "0.4.0", | ||
"description": "Common types shared between changeset packages", | ||
@@ -5,0 +5,0 @@ "main": "dist/types.cjs.js", |
@@ -37,2 +37,3 @@ // NB: Bolt check uses a different dependnecy set to every other package. | ||
releases: ComprehensiveRelease[]; | ||
preState: PreState | undefined; | ||
}; | ||
@@ -94,1 +95,10 @@ | ||
}; | ||
export type PreState = { | ||
mode: "pre" | "exit"; | ||
tag: string; | ||
initialVersions: { | ||
[pkgName: string]: string; | ||
}; | ||
changesets: string[]; | ||
}; |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
8716
180
1