grunt-cli v1.4.2 grunt v1.3.0
I wrote a function that console.log's information on the terminal, and it works with the -q option
$ grunt print-version -q
Running "print-version" task
release-1.4.31_1.11.0_20220215.1812
Done.
is there an option to make it even less verbose, and only print the version, like this?
$ grunt print-version -q
release-1.4.31_1.11.0_20220215.1812
I tried -qq but that didn't work.