We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grunt.log.error
grutn.warn
The compiler minify function uses grunt.warn on error:
minify
grunt.warn
grunt-angular-templates/tasks/lib/compiler.js
Line 121 in 9aa6b9e
Please change it to error instead of warn so that stack trace is exposed.
error
warn
The text was updated successfully, but these errors were encountered:
fix: (logging): adjusted logging to error instead of warning when min…
5d25e5e
…ify failes. This closes ericclemmons#106
Successfully merging a pull request may close this issue.
The compiler
minify
function usesgrunt.warn
on error:grunt-angular-templates/tasks/lib/compiler.js
Line 121 in 9aa6b9e
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.The text was updated successfully, but these errors were encountered: