delay loading dependencies until task execution #88
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
bower is extremely slow to require(), therefore just loading the bower task
will masssively slow down a grunt build even if the bower task is not executed
in that particular grunt run
Actually, I realize this is a somewhat crude hack and the issue should be properly fixed in bower (by not wasting a whole second for a require on decent hardware) and maybe also in the grunt API (something like an
initialize
method that is only run when the task is actually used) - but this annoyed me so much so many times every single day that I had a quick shot at it... Feel free to close and hate me for this PR. Or if you have a better idea for a cleaner workaround, I'd love to hear it ;)💖, Chris