aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 16:25:01 -0700
committerMark Otto <[email protected]>2014-07-08 16:25:01 -0700
commitf6367bc0e4d66ab56f61d9aee3d326dcce19847f (patch)
treec7692865a22e379339b7140cd89c7c5d30c5aaf4 /Gruntfile.js
parent86099bfb330ae43026e07ce7d14b67201fbb96d4 (diff)
downloadbootstrap-f6367bc0e4d66ab56f61d9aee3d326dcce19847f.tar.xz
bootstrap-f6367bc0e4d66ab56f61d9aee3d326dcce19847f.zip
Implement the new border-radius guard: only round things if global @enable-rounded == true
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 004a71ce2..33dd351af 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -444,6 +444,9 @@ module.exports = function (grunt) {
// Full distribution task.
grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-js', 'dist-docs']);
+ // Custom docs rebuild task.
+ grunt.registerTask('build', ['clean', 'less-compile', 'autoprefixer:core', 'autoprefixer:theme', 'autoprefixer:docs', 'usebanner', 'csscomb:dist', 'cssmin:core', 'cssmin:docs', 'concat', 'uglify:bootstrap', 'dist-docs']);
+
// Default task.
grunt.registerTask('default', ['test', 'dist']);