Bootstrap toolkit that embeds Font Awesome for developing with HTML, CSS, and JS.
To use this project, you'll need (at minimum):
- Node.js' package ecosystem, npm
#!/bin/bash
GITUSER="ecwpz91"
git clone https://github.com/${GITUSER}/styles.git
cd styles
#!/bin/bash
DIRPATH="${HOME}/Downloads/styles"; GITUSER="ecwpz91"; RELEASE="master"
GITREPO="https://github.com/${GITUSER}/styles/archive/${RELEASE}.zip"
ARCHIVE="$(printf "%s" "${GITREPO##*/}")"
# Download and extract
wget ${GITREPO} \
&& temp="$(mktemp -d)" \
&& unzip -d $temp ${ARCHIVE} \
&& mkdir -p ${DIRPATH} \
&& mv $temp/*/* ${DIRPATH} \
&& rm -rf $temp ${ARCHIVE} \
&& cd ${DIRPATH} \
&& unset DIRPATH GITUSER GITREPO ARCHIVE
cd styles/
npm i
grunt
It compiles Bootstrap and embeds Font Awesome iconography into dist/
. That's it!