-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…104)
- Loading branch information
1 parent
e428d82
commit 2b25e0f
Showing
6 changed files
with
102 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
# Change versionKind to one of: breaking, feature, fix, internal | ||
changeKind: fix | ||
packages: | ||
- "@chronus/chronus" | ||
--- | ||
|
||
Add `--report-summary` to `publish` command to save a report summary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export type PublishSummaryStatus = "success" | "partial" | "failed"; | ||
|
||
export type PublishPackageResult = PublishedPackageSuccess | PublishedPackageFailure; | ||
|
||
export interface PublishedPackageSuccess { | ||
readonly published: true; | ||
readonly name: string; | ||
readonly version: string; | ||
readonly size: number; | ||
readonly unpackedSize: number; | ||
} | ||
|
||
export interface PublishedPackageFailure { | ||
readonly published: false; | ||
readonly name: string; | ||
readonly version: string; | ||
} | ||
|
||
export interface PublishSummary { | ||
status: PublishSummaryStatus; | ||
packages: Record<string, PublishPackageResult>; | ||
} |