aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started/compiling.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-03-11 19:02:32 +0000
committerMark Otto <[email protected]>2015-03-11 19:02:32 +0000
commit7253bd38f71bcd7921266da9fe254bd7b45d08a4 (patch)
tree60da42857dc25397828192c2f9410c9ee9cc3105 /docs/getting-started/compiling.md
parente70d83dc5d039b81412b26db6662088a6238748b (diff)
downloadbootstrap-7253bd38f71bcd7921266da9fe254bd7b45d08a4.tar.xz
bootstrap-7253bd38f71bcd7921266da9fe254bd7b45d08a4.zip
simplify grunt compiling docs
Diffstat (limited to 'docs/getting-started/compiling.md')
-rw-r--r--docs/getting-started/compiling.md23
1 files changed, 8 insertions, 15 deletions
diff --git a/docs/getting-started/compiling.md b/docs/getting-started/compiling.md
index 1d5b29d0e..bceb25bcb 100644
--- a/docs/getting-started/compiling.md
+++ b/docs/getting-started/compiling.md
@@ -1,6 +1,6 @@
---
layout: page
-title: Compiling with Grunt
+title: Compiling
---
Bootstrap uses [Grunt](http://gruntjs.com) for its build system, with convenient methods for working with the framework. It's how we compile our code, run tests, and more.
@@ -24,20 +24,13 @@ When completed, you'll be able to run the various Grunt commands provided from t
### Available Grunt commands
-#### Build - `grunt`
-Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
-
-#### Only compile CSS and JavaScript - `grunt dist`
-`grunt dist` creates the `/dist` directory with compiled files. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
-
-#### Tests - `grunt test`
-Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI).
-
-#### Build and test docs assets - `grunt docs`
-Builds and tests CSS, JavaScript, and other assets which are used when running the documentation locally via `jekyll serve`.
-
-#### Watch - `grunt watch`
-This is a convenience method for watching just Sass files and automatically building them whenever you save.
+| Task | Description |
+| --- | --- |
+| `grunt` | Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).** |
+| `grunt dist` | `grunt dist` creates the `/dist` directory with compiled files. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).** |
+| `grunt test` | Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI). |
+| `grunt docs` | Builds and tests CSS, JavaScript, and other assets which are used when running the documentation locally via `jekyll serve`. |
+| `grunt watch` | This is a convenience method for watching just Sass files and automatically building them whenever you save. |
### Use another Sass compiler
Bootstrap is compiled with [libsass][libsass] by default.