Created
September 10, 2014 10:02
-
-
Save lithuak/ccb884fb12f79f43001a to your computer and use it in GitHub Desktop.
compile bootstrap in ubuntu
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
| -- Install node.js, fix for it, npm and grunt: | |
| sudo apt-get install node.js | |
| sudo apt-get install nodejs-legacy | |
| sudo apt-get install npm | |
| npm install -g grunt-cli | |
| -- Download bootstrap sources -> /exper/bootstrap | |
| -- Install dependencies: | |
| cd /exper/bootstrap | |
| sudo npm install | |
| -- "The less/, js/, and fonts/ are the source code for our CSS, JS, and icon fonts (respectively). The dist/ folder includes everything listed in the precompiled download section above. The docs/ folder includes the source code for our documentation, and examples/ of Bootstrap usage." | |
| grunt dist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment