fix(core): propagate verbose
flag when running init
generator dur…
#21868
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…ing
nx add
commandCurrent Behavior
When using the new
nx add <plugin>
to install a plugin (asdevDependencies
) and initializes it (if ainit
generator exists),any raw error thrown when calling that generator, is not sent back to user, even if the
--verbose
flag is provided to thenx add
command.Instead, a generic and not so useful " > NX Failed to initialize @nxrocks/nx-spring-boot. Please check the error above for more details." is displayed...
Here is an example:
After manually tweaking the
@node_modules/nx/src/command-line/add/add.js
file, to consider the --verbose flag, I managed to get more helpful insight about the actual underlying error that occurred in myinit
generator (here, the generator was expecting a required "name" option that was, of course, not provided)Here is output, when that flag was considered:
Expected Behavior
Propagate the
--verbose
flag when running theinit
generator, so that more information can be output to user if calling that generator failed for some reason.If not provided at all, or provided with
--verbose=false
, no extra log is printed (current behavior)Related Issue(s)
Fixes #