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
I find some tasks like rails:assets_precompile slightly more verbose than necessary.
rails:assets_precompile
The current implementation will print every generated asset and as an alternative implementation I am doing this:
# invoke :'rails:assets_precompile' queue 'echo "-----> Precompiling asset files"' queue "bundle exec rake assets:precompile 2>&1 | grep -v 'INFO --' || true"
The text was updated successfully, but these errors were encountered:
This is an issue with rake assets:precompile as it outputs to STDERR instead of STDOUT.
Sorry, something went wrong.
Yes, showing always any STDERR seems a sane default. I am no longer sure this is such a great feature
Furthermore, this might encourage people to always generate all assets from scratch whenever they should be shared between each deploy :-/
No branches or pull requests
I find some tasks like
rails:assets_precompile
slightly more verbose than necessary.The current implementation will print every generated asset and as an alternative implementation I am doing this:
The text was updated successfully, but these errors were encountered: