I have a bash script where I echo out some coloured text at the start like so:
echo "\033[1;31mACTION REQUIRED: \033[0m"
And I see that coloured as expected when I run the script from my terminal
But running as an npm script it ignores the colour expressions, so I just see the literal colour char sequences
How do I get these to behave when executing in the content of an npm script?