Skip to content

Commit

Permalink
fix(core): print out configuration for run-many logging (#11228)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi authored Jul 21, 2022
1 parent 8c7b76e commit b89e321
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export async function createRunManyDynamicOutputRenderer({
const totalProjects = projectNames.length;
const totalDependentTasks = totalTasks - totalProjects;
const targetName = args.target;
const configuration = args.configuration;
const projectRows = projectNames.map((projectName) => {
return {
projectName,
Expand Down Expand Up @@ -206,7 +207,10 @@ export async function createRunManyDynamicOutputRenderer({
` ${output.dim.cyan(
dots.frames[projectRowsCurrentFrame]
)} ${output.formatCommand(
projectRow.projectName + ':' + targetName
projectRow.projectName +
':' +
targetName +
(configuration ? ':' + configuration : '')
)}`
);
}
Expand Down

1 comment on commit b89e321

@vercel
Copy link

@vercel vercel bot commented on b89e321 Jul 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx.dev
nx-five.vercel.app

Please sign in to comment.