Closed mgol closed 8 years ago
The compiler minify function uses grunt.warn on error: https://github.com/ericclemmons/grunt-angular-templates/blob/9aa6b9e1c36fd2beb48cafc0504215909e8398c1/tasks/lib/compiler.js#L121 This makes it extremely hard to find the cause of the issue if html minifier fails.
minify
grunt.warn
Please change it to error instead of warn so that stack trace is exposed.
error
warn
The compiler
minify
function usesgrunt.warn
on error: https://github.com/ericclemmons/grunt-angular-templates/blob/9aa6b9e1c36fd2beb48cafc0504215909e8398c1/tasks/lib/compiler.js#L121 This makes it extremely hard to find the cause of the issue if html minifier fails.Please change it to
error
instead ofwarn
so that stack trace is exposed.