aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 16:25:23 -0700
committerMark Otto <[email protected]>2014-07-08 16:25:23 -0700
commitbb3157c2d92888348cbf1fd384fc59630f3ea267 (patch)
tree8b76352aad06abbf253025dc1dba7fbb3ba1d39c /Gruntfile.js
parentf6367bc0e4d66ab56f61d9aee3d326dcce19847f (diff)
downloadbootstrap-bb3157c2d92888348cbf1fd384fc59630f3ea267.tar.xz
bootstrap-bb3157c2d92888348cbf1fd384fc59630f3ea267.zip
Add new grunt task for faster builds; nuke fonts
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 33dd351af..65efb51ee 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -284,11 +284,6 @@ module.exports = function (grunt) {
},
copy: {
- fonts: {
- expand: true,
- src: 'fonts/*',
- dest: 'dist/'
- },
docs: {
expand: true,
cwd: './dist',
@@ -442,7 +437,7 @@ module.exports = function (grunt) {
grunt.registerTask('dist-docs', 'copy:docs');
// Full distribution task.
- grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-js', 'dist-docs']);
+ grunt.registerTask('dist', ['clean', 'dist-css', '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']);