Skip to content

Commit

Permalink
Fixed the printed filename in the verbose output of changeset status (
Browse files Browse the repository at this point in the history
#843)

* fix: changeset filename with status verbose

* Tweak changeset

Co-authored-by: Mateusz Burzyński <mateuszburzynski@gmail.com>
  • Loading branch information
caohuilin and Andarist committed Jun 17, 2022
1 parent bb7690e commit 101b1cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/gold-mangos-search.md
@@ -0,0 +1,5 @@
---
"@changesets/cli": patch
---

Fixed the printed filename in the verbose output of `changeset status`.
4 changes: 1 addition & 3 deletions packages/cli/src/commands/status/index.ts
Expand Up @@ -95,9 +95,7 @@ function verbosePrint(
({ name, newVersion: version, changesets }) => [
chalk.green(name),
version,
changesets
.map(c => chalk.blue(` .changeset/${c}/changes.md`))
.join(" +")
changesets.map(c => chalk.blue(` .changeset/${c}.md`)).join(" +")
]
);

Expand Down

0 comments on commit 101b1cb

Please sign in to comment.