Skip to content

Commit

Permalink
[INTERNAL] Tree: Also show project namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomByte committed Apr 22, 2022
1 parent 0ad6950 commit b767199
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/cli/commands/tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ tree.handler = async function(argv) {
const connectorString = lastChild ? "╰─" : "├─";
console.log(
`${baseString}${connectorString} ${chalk.bold(project.getName())} ` +
`${project.getNamespace ? chalk.inverse(project.getNamespace()) + " " : ""}` +
chalk.dim(`(${project.getVersion()}, ${project.getType()}) `) +
chalk.dim.italic(`${project.getPath()}`)
);
Expand Down

0 comments on commit b767199

Please sign in to comment.