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
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2016-07-27 07:09:39 +0300
committerMark Otto <markdotto@gmail.com>2016-07-27 07:09:39 +0300
commit8e9a9a5960697cd8cd698ca6b4d8733bd7872de6 (patch)
treee78c2030f5454ad799124b0646bc5db74d2a31d1 /Gruntfile.js
parentc017eaca2fb318f7d215f41b966d553429e00f90 (diff)
Enable flexbox grid CSS on our docs page
- Creates new flexbox grid Sass file in our docs assets - Updates the Gruntfile to compile said new Sass file and minify the output - Update notice on flexbox docs page for how it works - Only enable compiled flexbox grid CSS in hosted docs site, not in dev (for easier and specific debugging of all flexbox features)
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 0deece20ce..fd729a4f71 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -184,8 +184,15 @@ module.exports = function (grunt) {
]
},
docs: {
- src: 'docs/assets/css/docs.min.css',
- dest: 'docs/assets/css/docs.min.css'
+ files: [
+ {
+ expand: true,
+ cwd: 'docs/assets/css',
+ src: ['*.css', '!*.min.css'],
+ dest: 'docs/assets/css',
+ ext: '.min.css'
+ }
+ ]
}
},