-
BackgroundWe run ProblemWith enough of these projects, we end up going over our log size limit in our CI job window. This is painful because if there is unit test error as part of the CI tasks, then we sometimes cannot see the feedback. QuestionWe see there is a
parameter, but we are using that today. Maybe there is opportunity to hide even more information such as
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@nhomble So this output is actually TypeScript:
For that task, I believe you can remove With that said, all stdout/err output from tasks is printed to the terminal and cannot be turned off from moon arguments alone. However, you can set |
Beta Was this translation helpful? Give feedback.
@nhomble So this output is actually TypeScript:
For that task, I believe you can remove
--verbose
from thetsc
command.With that said, all stdout/err output from tasks is printed to the terminal and cannot be turned off from moon arguments alone. However, you can set
MOON_OUTPUT_STYLE=none
to hide the output of all tasks, or configureoutputStyle
on a per-task basis: https://moonrepo.dev/docs/config/project#outputstyle