From: Mark Otto Date: Mon, 12 Sep 2016 05:29:45 +0000 (-0700) Subject: Update gruntfile to compile the Sass extras (flex, grid, and reboot) as part of the... X-Git-Tag: v4.0.0-alpha.5~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cad238120ea59a3c0c9ac4d21761c0dc9713862a;p=thirdparty%2Fbootstrap.git Update gruntfile to compile the Sass extras (flex, grid, and reboot) as part of the dist-css task (#20682) --- diff --git a/Gruntfile.js b/Gruntfile.js index fd729a4f71..2b9c188992 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -385,7 +385,7 @@ module.exports = function (grunt) { require('./grunt/bs-sass-compile/' + sassCompilerName + '.js')(grunt); })(process.env.TWBS_SASS || 'libsass'); // grunt.registerTask('sass-compile', ['sass:core', 'sass:extras', 'sass:docs']); - grunt.registerTask('sass-compile', ['sass:core', 'sass:docs']); + grunt.registerTask('sass-compile', ['sass:core', 'sass:extras', 'sass:docs']); grunt.registerTask('dist-css', ['sass-compile', 'exec:postcss', 'cssmin:core', 'cssmin:docs']);