@changesets/types
Advanced tools
Comparing version 4.0.2 to 4.1.0-temp.0
# @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 @@ |
@@ -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; |
{ | ||
"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; |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
17401
228
2