Last active
April 7, 2017 09:56
-
-
Save xjamundx/7a0c98ce8e1f0d26b8d9d04486fe2f16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webpack --display-modules | awk '{print $3$4" "$2}' | grep -v bytes | sort -n | tail -100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since large file sizes are what you're after, could always reverse sort and grab from top...
npm run build | awk '{print $3$4" "$2}' | grep -v bytes | sort -nr | head -100
Doesn't really change it much. Maybe more preference.