Is your feature request related to a problem? Please describe.
Deploying a large number of packages can take a long time. Using pushPackageDirectoriesSequentially set to true makes all packages to be deployed one by one. When we have more than 40 packages inside sfdx-project.json, it's easy to get lost which package is currently being deployed.
What are you trying to do
I would like to see the name of a package currently being deployed.
Describe the solution you'd like
Instead of seeing the following console output:
*** Pushing with SOAP API v54.0 ***
DEPLOY PROGRESS | ████████████████████████████████████████ | 251/251 Components
*** Pushing with SOAP API v54.0 ***
DEPLOY PROGRESS | ████████████████████████████████████████ | 3453/3453 Components
*** Pushing with SOAP API v54.0 ***
DEPLOY PROGRESS | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | 0/2345 Components
I would like to see this for example:
*** Pushing pkg-x with SOAP API v54.0 ***
DEPLOY PROGRESS | ████████████████████████████████████████ | 251/251 Components
*** Pushing pkg-y with SOAP API v54.0 ***
DEPLOY PROGRESS | ████████████████████████████████████████ | 3453/3453 Components
*** Pushing pkg-z with SOAP API v54.0 ***
DEPLOY PROGRESS | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | 0/2345 Components
Describe alternatives you've considered
I can only wait & count packages, which one is currently deployed, and compare it with order in a sfdx-project.json file.
Is your feature request related to a problem? Please describe.
Deploying a large number of packages can take a long time. Using
pushPackageDirectoriesSequentiallyset totruemakes all packages to be deployed one by one. When we have more than 40 packages insidesfdx-project.json, it's easy to get lost which package is currently being deployed.What are you trying to do
I would like to see the name of a package currently being deployed.
Describe the solution you'd like
Instead of seeing the following console output:
I would like to see this for example:
Describe alternatives you've considered
I can only wait & count packages, which one is currently deployed, and compare it with order in a
sfdx-project.jsonfile.