0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00

Update folder structure (#26729)

This commit is contained in:
Martijn Cuppens 2018-06-21 17:20:03 +02:00 committed by XhmikosR
parent 29bff9fdd0
commit 1719a2ca42

View File

@ -74,24 +74,29 @@ Within the download you'll find the following directories and files, logically g
``` ```
bootstrap/ bootstrap/
├── css/ └── dist/
│ ├── bootstrap.css ├── css/
│ ├── bootstrap.css.map │ ├── bootstrap-grid.css
│ ├── bootstrap.min.css │ ├── bootstrap-grid.css.map
│ ├── bootstrap.min.css.map │ ├── bootstrap-grid.min.css
│ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css.map
│ ├── bootstrap-grid.css.map │ ├── bootstrap-reboot.css
│ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css.map
│ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.min.css
│ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css.map
│ ├── bootstrap-reboot.css.map │ ├── bootstrap.css
│ ├── bootstrap-reboot.min.css │ ├── bootstrap.css.map
│ └── bootstrap-reboot.min.css.map │ ├── bootstrap.min.css
└── js/ │ └── bootstrap.min.css.map
└── js/
├── bootstrap.bundle.js ├── bootstrap.bundle.js
├── bootstrap.bundle.js.map
├── bootstrap.bundle.min.js ├── bootstrap.bundle.min.js
├── bootstrap.bundle.min.js.map
├── bootstrap.js ├── bootstrap.js
└── bootstrap.min.js ├── bootstrap.js.map
├── bootstrap.min.js
└── bootstrap.min.js.map
``` ```
We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/debug/readability/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/). We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/debug/readability/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/).