aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-04-22 23:01:11 -0700
committerMark Otto <[email protected]>2013-04-22 23:01:11 -0700
commitdea134d6eecc5e68244c67cd4f9237a493d95e8c (patch)
tree20f6e49270f60f47502853eea83fb73e06915789
parent73793637d1df450e9c8d07cf3760ba4eea2314a9 (diff)
downloadbootstrap-dea134d6eecc5e68244c67cd4f9237a493d95e8c.tar.xz
bootstrap-dea134d6eecc5e68244c67cd4f9237a493d95e8c.zip
explicit callout in readme for building static assets; fixes #7632
-rw-r--r--README.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index 3ecafb6f1..b4b934f60 100644
--- a/README.md
+++ b/README.md
@@ -51,13 +51,16 @@ $ npm install
When completed, you'll be able to run the various make commands provided:
-#### build - `make` or `make bootstrap`
-`make` runs the Recess compiler to rebuild the `/less` files and compile the docs. `make bootstrap` creates the `/bootstrap` directory with compiled files. **Requires recess and uglify-js.**
+#### Build - `make`
+`make` runs the Recess compiler to rebuild the `/less` files and compile the docs. **Requires recess and uglify-js.**
-#### test - `make test`
+#### Compile CSS, JS, and fonts - `make bootstrap`
+`make bootstrap` creates the `/bootstrap` directory with compiled files. **Requires recess and uglify-js.**
+
+#### Tests - `make test`
Runs jshint and qunit tests headlessly in [phantomjs](http://code.google.com/p/phantomjs/) (used for ci). **Requires phantomjs.**
-#### watch - `make watch`
+#### Watch - `make watch`
This is a convenience method for watching just Less files and automatically building them whenever you save. **Requires the watchr gem.**
Should you encounter problems with installing dependencies or running the makefile commands, uninstall any previous versions (global and local) you may have installed, and then rerun `npm install`.