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 023d05d commit 4ea3274
Showing 1 changed file with 1 addition and 3 deletions.
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 4ea3274

Please sign in to comment.