-
Notifications
You must be signed in to change notification settings - Fork 12k
fix(@angular/cli): add verbose
option to update
and add
#15000
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(@angular/cli): add verbose
option to update
and add
#15000
Conversation
|
@@ -30,6 +30,11 @@ | |||
"format": "hostname" | |||
} | |||
] | |||
}, | |||
"verbose": { | |||
"description": "When true, display additional details during the add process.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When true,
doesn't really make sense here since it's a flag.
Can you also make the description more generic? I'd like to eventually make it a global option for all commands.
Something maybe like: Display additional details about internal operations during execution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do agree with you, through probably regarding the “When true”, we should probably remove it from all of the other descriptions as well. As it seems to be some the standard for Boolean options.
At the moment there is no way to turn on the verbose logging for `ng update` and `ng add`. This is useful for use so that when users report issues such as npmrc is not read we can see the lookup locations. This also removes some reduncant that were being provided in `executeSchematic`. Related to #14993
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
At the moment there is no way to turn on the verbose logging for
ng update
andng add
. This is useful for use so that when users report issues such as npmrc is not read we can see the lookup locations.This also removes some reduncant that were being provided in
executeSchematic
.Related to #14993