Created
July 28, 2016 12:21
-
-
Save jcoglan/1848f79618af0aea602e8be3033e6125 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
#!/bin/bash | |
function how-big-is { | |
local library="$1" | |
npm install "$library" uglifyjs webpack | |
echo "require('$library')" > index.js | |
./node_modules/.bin/webpack . build.js | |
./node_modules/.bin/uglifyjs build.js -cmo build-min.js 2> /dev/null | |
gzip -c build-min.js > build-min.js.gz | |
ls -lh build* | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment