2

When I run ng build on my Mac through the Terminal, I am able to see the progress of the modules building like so:

enter image description here

However, when I run ng build via Powershell ISE, it doesn't show any output at all, not even the warnings. How can I update my Powershell script so that it shows the build progress percentage and the warnings?

1 Answer 1

3

You could invoke it through the call operator

& ng @( 'build' )
# Explicitly request progress
& ng @( 'build' , '--progress')
Sign up to request clarification or add additional context in comments.

1 Comment

Thank you. Adding --progress seemed to do the trick, I should've just tried that sooner. It's odd though that I need to add that flag in ISE but not in Terminal in order to see the output. Would you happen to know the reason for that?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.