Socket
Socket
Sign inDemoInstall

@changesets/types

Package Overview
Dependencies
0
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.2 to 4.1.0-temp.0

6

CHANGELOG.md
# @changesets/types
## 4.1.0-temp.0
### Minor Changes
- [#696](https://github.com/changesets/changesets/pull/696) [`636c7d7`](https://github.com/changesets/changesets/commit/636c7d7c9333664c91cd4d0ff678d5acb17256ad) Thanks [@Andarist](https://github.com/Andarist)! - Fixed mode and publish refactor
## 4.0.2

@@ -4,0 +10,0 @@

6

dist/declarations/src/index.d.ts

@@ -53,6 +53,9 @@ declare const DEPENDENCY_TYPES: readonly ["dependencies", "devDependencies", "peerDependencies", "optionalDependencies"];

};
export declare type Linked = ReadonlyArray<ReadonlyArray<string>>;
export declare type PackageGroup = ReadonlyArray<string>;
export declare type Fixed = ReadonlyArray<PackageGroup>;
export declare type Linked = ReadonlyArray<PackageGroup>;
export declare type Config = {
changelog: false | readonly [string, any];
commit: boolean;
fixed: Fixed;
linked: Linked;

@@ -70,2 +73,3 @@ access: AccessType;

commit?: boolean;
fixed?: Fixed;
linked?: Linked;

@@ -72,0 +76,0 @@ access?: AccessType;

2

package.json
{
"name": "@changesets/types",
"version": "4.0.2",
"version": "4.1.0-temp.0",
"description": "Common types shared between changeset packages",

@@ -5,0 +5,0 @@ "main": "dist/types.cjs.js",

@@ -59,7 +59,11 @@ // NB: Bolt check uses a different dependnecy set to every other package.

export type Linked = ReadonlyArray<ReadonlyArray<string>>;
export type PackageGroup = ReadonlyArray<string>;
export type Fixed = ReadonlyArray<PackageGroup>;
export type Linked = ReadonlyArray<PackageGroup>;
export type Config = {
changelog: false | readonly [string, any];
commit: boolean;
fixed: Fixed;
linked: Linked;

@@ -80,2 +84,3 @@ access: AccessType;

commit?: boolean;
fixed?: Fixed;
linked?: Linked;

@@ -82,0 +87,0 @@ access?: AccessType;

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc