Grunt karma interrupted due to warnings

I get an "Aborted due to warnings" error message when grunt starts in -verbose mode.

ar@Woody:~/www/mysite-frontend-dev$ grunt build:debug

...

Registering "grunt-karma" local Npm module tasks.
Reading /home/ar/www/mysite-frontend-dev/node_modules/grunt-karma/package.json...OK
Parsing /home/ar/www/mysite-frontend-dev/node_modules/grunt-karma/package.json...OK Use --force to continue.

Aborted due to warnings.

Is there a way to get a more verbose output? This warning message does not say much ...

+4
source share
2 answers

There was a problem with grunt-concurrent and Debian "compress". Updating to the latest version (0.4.1) grunt-concurrent resolved the issue.

0
source

In general, you can pass a command line flag, for example, $ grunt build:debug --verboseor $ grunt build:debug --stack, to view more detailed information

+1
source

All Articles