Skip to content

Commit

Permalink
fixes #2247 - improve auto-tag output
Browse files Browse the repository at this point in the history
  • Loading branch information
GiladShoham committed Jan 22, 2020
1 parent 48a2309 commit 8e85d94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased]

- [#2247](https://github.com/teambit/bit/issues/2247) improve auto-tag output

## [[14.7.2] - 2020-01-12](https://github.com/teambit/bit/releases/tag/v14.7.2)

### New
Expand Down
3 changes: 2 additions & 1 deletion src/cli/commands/public-cmds/tag-cmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ export default class Tag extends Command {
);
if (autoTag.length) {
const autoTagComp = autoTag.map(a => a.component.toBitIdWithLatestVersion().toString());
componentOutput += `\n ${AUTO_TAGGED_MSG}: ${autoTagComp.join(', ')}`;
componentOutput += `\n ${AUTO_TAGGED_MSG}:
${autoTagComp.join('\n ')}`;
}
return componentOutput;
})
Expand Down

0 comments on commit 8e85d94

Please sign in to comment.