Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2017-10-16 05:17:53 +0300
committerGitHub <noreply@github.com>2017-10-16 05:17:53 +0300
commitdb487f9845a4406ebe465618e4dd6909f7c903a9 (patch)
tree7d27eebfff3754e5a7e41571fa26531f9609814a /docs
parent7ce2b03b1a6a773a2f9f2a0f36832d8cb9b30b79 (diff)
Update build-tools.md (#24378)
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/build-tools.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/4.0/getting-started/build-tools.md b/docs/4.0/getting-started/build-tools.md
index 64b0320213..4eb37e3125 100644
--- a/docs/4.0/getting-started/build-tools.md
+++ b/docs/4.0/getting-started/build-tools.md
@@ -28,9 +28,11 @@ Our [package.json]({{ site.repo }}/blob/v{{ site.current_version }}/package.json
| Task | Description |
| --- | --- |
-| `npm test` | Run `npm test` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Sass](http://sass-lang.com/), [Autoprefixer][autoprefixer], and [UglifyJS](http://lisperator.net/uglifyjs/).** |
-| `npm run dist` | `npm run dist` creates the `/dist` directory with compiled files. **Uses [Sass](http://sass-lang.com/), [Autoprefixer][autoprefixer], and [UglifyJS](http://lisperator.net/uglifyjs/).** |
-| `npm run docs` | Builds and tests CSS, JavaScript, and other assets which are used when running the documentation locally via `npm run docs-serve`. |
+| `npm run dist` | `npm run dist` creates the `/dist` directory with compiled files. **Uses [Sass](http://sass-lang.com/), [Autoprefixer][autoprefixer], and [UglifyJS](https://github.com/mishoo/UglifyJS2).** |
+| `npm test` | Same as `npm run dist` plus it runs tests locally |
+| `npm run docs` | Builds and lints CSS and JavaScript for docs. You can then run the documentation locally via `npm run docs-serve`. |
+
+Run `npm run` to see all the npm scripts.
## Autoprefixer