Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: changeset filename with status verbose #843

Merged
merged 2 commits into from Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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