@changesets/types
Advanced tools
Comparing version 5.1.0 to 5.2.0
# @changesets/types | ||
## 5.2.0 | ||
### Minor Changes | ||
- [#662](https://github.com/changesets/changesets/pull/662) [`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14) Thanks [@JakeGinnivan](https://github.com/JakeGinnivan)! - Added support for the `privatePackages` property in the config. | ||
## 5.1.0 | ||
@@ -101,3 +107,3 @@ | ||
* [`e56928b`](https://github.com/changesets/changesets/commit/e56928bbd6f9096def06ac37487bdbf28efec9d1) [#298](https://github.com/changesets/changesets/pull/298) Thanks [@eps1lon](https://github.com/eps1lon)! - In changelog-github, throw more descriptive error when no options are provided. | ||
- [`e56928b`](https://github.com/changesets/changesets/commit/e56928bbd6f9096def06ac37487bdbf28efec9d1) [#298](https://github.com/changesets/changesets/pull/298) Thanks [@eps1lon](https://github.com/eps1lon)! - In changelog-github, throw more descriptive error when no options are provided. | ||
@@ -110,3 +116,3 @@ ## 1.0.0 | ||
* [`cc8c921`](https://github.com/changesets/changesets/commit/cc8c92143d4c4b7cca8b9917dfc830a40b5cda20) [#290](https://github.com/changesets/changesets/pull/290) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Remove `Workspace` type. You should use the `Package` type from `@manypkg/get-packages` instead. | ||
- [`cc8c921`](https://github.com/changesets/changesets/commit/cc8c92143d4c4b7cca8b9917dfc830a40b5cda20) [#290](https://github.com/changesets/changesets/pull/290) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Remove `Workspace` type. You should use the `Package` type from `@manypkg/get-packages` instead. | ||
@@ -113,0 +119,0 @@ ### Minor Changes |
@@ -56,2 +56,6 @@ declare const DEPENDENCY_TYPES: readonly ["dependencies", "devDependencies", "peerDependencies", "optionalDependencies"]; | ||
export declare type Linked = ReadonlyArray<PackageGroup>; | ||
export interface PrivatePackages { | ||
version: boolean; | ||
tag: boolean; | ||
} | ||
export declare type Config = { | ||
@@ -64,2 +68,4 @@ changelog: false | readonly [string, any]; | ||
baseBranch: string; | ||
/** Features enabled for Private packages */ | ||
privatePackages: PrivatePackages; | ||
/** The minimum bump type to trigger automatic update of internal dependencies that are part of the same release */ | ||
@@ -83,2 +89,7 @@ updateInternalDependencies: "patch" | "minor"; | ||
baseBranch?: string; | ||
/** Opt in to tracking non-npm / private packages */ | ||
privatePackages?: false | { | ||
version?: boolean; | ||
tag?: boolean; | ||
}; | ||
/** The minimum bump type to trigger automatic update of internal dependencies that are part of the same release */ | ||
@@ -85,0 +96,0 @@ updateInternalDependencies?: "patch" | "minor"; |
{ | ||
"name": "@changesets/types", | ||
"version": "5.1.0", | ||
"version": "5.2.0", | ||
"description": "Common types shared between changeset packages", | ||
@@ -5,0 +5,0 @@ "main": "dist/types.cjs.js", |
@@ -7,3 +7,3 @@ // NB: Bolt check uses a different dependnecy set to every other package. | ||
"peerDependencies", | ||
"optionalDependencies" | ||
"optionalDependencies", | ||
] as const; | ||
@@ -65,2 +65,7 @@ | ||
export interface PrivatePackages { | ||
version: boolean; | ||
tag: boolean; | ||
} | ||
export type Config = { | ||
@@ -73,2 +78,4 @@ changelog: false | readonly [string, any]; | ||
baseBranch: string; | ||
/** Features enabled for Private packages */ | ||
privatePackages: PrivatePackages; | ||
/** The minimum bump type to trigger automatic update of internal dependencies that are part of the same release */ | ||
@@ -96,2 +103,9 @@ updateInternalDependencies: "patch" | "minor"; | ||
baseBranch?: string; | ||
/** Opt in to tracking non-npm / private packages */ | ||
privatePackages?: | ||
| false | ||
| { | ||
version?: boolean; | ||
tag?: boolean; | ||
}; | ||
/** The minimum bump type to trigger automatic update of internal dependencies that are part of the same release */ | ||
@@ -98,0 +112,0 @@ updateInternalDependencies?: "patch" | "minor"; |
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
20884
291