Skip to content

Commit

Permalink
fix: changeset filename with status verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
caohuilin committed Jun 17, 2022
1 parent bb7690e commit 49e74a9
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
---

fix: changeset filename with status verbose
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 49e74a9

Please sign in to comment.