Created
November 29, 2017 18:52
-
-
Save cwonrails/5fe1d44d5b0b61ebcdc6ba1ce8c8e805 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/sh | |
DL='wget -q' | |
BASEURL='https://unpkg.com' | |
STYLESDIR='src/css/vendor' | |
if [ ! -d "$STYLESDIR" ]; then | |
mkdir -p $STYLESDIR | |
fi | |
### Uncomment any stylesheets you want to download or update ### | |
## basscss | |
# $DL $BASEURL/basscss/css/basscss.css -O $STYLESDIR/basscss.css | |
# $DL $BASEURL/basscss/css/basscss.min.css -O $STYLESDIR/basscss.min.css | |
## bulma | |
# $DL $BASEURL/bulma/css/bulma.css -O $STYLESDIR/bulma.css | |
# $DL $BASEURL/bulma/css/bulma.map.css -O $STYLESDIR/bulma.map.css | |
## normalize.css | |
# $DL $BASEURL/normalize.css -O $STYLESDIR/normalize.css | |
## pure | |
# $DL $BASEURL/purecss -O $STYLESDIR/pure-min.css | |
## tachyons | |
# $DL $BASEURL/tachyons/css/tachyons.css -O $STYLESDIR/tachyons.css | |
# $DL $BASEURL/tachyons/css/tachyons.min.css -O $STYLESDIR/tachyons.min.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment