mroloux
mroloux
I'm running into this as well. Is there a way to enable colored output?
@deepy Thanks! I assume this is the fork you're referring to? https://github.com/node-gradle/gradle-node-plugin Seems like it has the same issue - no colored output. Guess we'll have to live without it...
When I execute `yarn run tsc` (outside of Gradle), the colors are printed just fine. So it must be related to how Gradle handles the output of yarn. I've tried...
Yes, `FORCE_COLOR=true` did the trick! Thanks so much! I also added the `--pretty` flag to the `tsc` command, to get nicely colored errors from TypeScript. And `--colors` to prettify Jest....