Created
February 19, 2013 17:50
-
-
Save james2doyle/4988169 to your computer and use it in GitHub Desktop.
A small bash script that will concatenate a bunch of file then compress and minify them using cleancss from node.
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
#!/usr/bin/env bash | |
cat bootstrap.css superfish.css template.css updates.css responsive-devices.css flexslider.css shadows.css prettyPhoto.css | cleancss -o styles.min.css | |
echo "merged and minified" | |
sublime styles.min.css | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment