Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@changesets/types

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/types - npm Package Compare versions

Comparing version 0.3.1 to 0.4.0

6

CHANGELOG.md
# @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 {};

2

package.json
{
"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[];
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc