diff options
| author | Mark Otto <[email protected]> | 2013-12-31 18:21:41 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-31 18:23:10 -0800 |
| commit | 50cf0b1a9d883ae3c4054dfd4071963fdf8aa812 (patch) | |
| tree | 7b99bc43635faae7485d53e256c40cad413e50cd /Gruntfile.js | |
| parent | 83d26de6d5da1e25ebc647a63066f0f8f4549bd5 (diff) | |
| download | bootstrap-50cf0b1a9d883ae3c4054dfd4071963fdf8aa812.tar.xz bootstrap-50cf0b1a9d883ae3c4054dfd4071963fdf8aa812.zip | |
Update Gruntfile.js to copy 'dist/' files to 'docs/dist/' with 'grunt dist' task; Fixes #12030: navbar toggle focus state
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 2da15ea33..93831b335 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -322,7 +322,7 @@ module.exports = function (grunt) { grunt.registerTask('dist-docs', ['copy:docs']); // Full distribution task. - grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-js']); + grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-docs', 'dist-js']); // Default task. grunt.registerTask('default', ['test', 'dist', 'build-glyphicons-data', 'build-customizer']); |
