mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
8e9a9a5960
- 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)
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
// Compile Bootstrap with [libsass][1] using [grunt-sass][2]
|
|
// [1]: https://github.com/sass/libsass
|
|
// [2]: https://github.com/sindresorhus/grunt-sass
|
|
module.exports = function configureLibsass(grunt) {
|
|
grunt.config.merge({
|
|
sass: {
|
|
options: {
|
|
includePaths: ['scss'],
|
|
precision: 6,
|
|
sourceComments: false,
|
|
sourceMap: true,
|
|
outputStyle: 'expanded'
|
|
},
|
|
core: {
|
|
files: {
|
|
'dist/css/<%= pkg.name %>.css': 'scss/<%= pkg.name %>.scss'
|
|
}
|
|
},
|
|
extras: {
|
|
files: {
|
|
'dist/css/<%= pkg.name %>-flex.css': 'scss/<%= pkg.name %>-flex.scss',
|
|
'dist/css/<%= pkg.name %>-grid.css': 'scss/<%= pkg.name %>-grid.scss',
|
|
'dist/css/<%= pkg.name %>-reboot.css': 'scss/<%= pkg.name %>-reboot.scss'
|
|
}
|
|
},
|
|
docs: {
|
|
files: {
|
|
'docs/assets/css/docs.min.css': 'docs/assets/scss/docs.scss',
|
|
'docs/assets/css/docs-flexbox.min.css': 'docs/assets/scss/flex-grid.scss'
|
|
}
|
|
}
|
|
}
|
|
});
|
|
grunt.loadNpmTasks('grunt-sass');
|
|
};
|