Skip to content

Commit

Permalink
Restore glyphicons
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Aug 18, 2013
1 parent 09d80fa commit 1e0453f
Show file tree
Hide file tree
Showing 19 changed files with 1,534 additions and 30 deletions.
14 changes: 13 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ module.exports = function(grunt) {
}
},

copy: {
fonts: {
expand: true,
src: ["fonts/*"],
dest: 'dist/'
}
},

qunit: {
options: {
inject: 'js/tests/unit/phantom.js'
Expand Down Expand Up @@ -147,6 +155,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-uglify');
Expand Down Expand Up @@ -176,8 +185,11 @@ module.exports = function(grunt) {
// CSS distribution task.
grunt.registerTask('dist-css', ['recess']);

// Fonts distribution task.
grunt.registerTask('dist-fonts', ['copy']);

// Full distribution task.
grunt.registerTask('dist', ['clean', 'dist-css', 'dist-js']);
grunt.registerTask('dist', ['clean', 'dist-css', 'dist-fonts', 'dist-js']);

// Default task.
grunt.registerTask('default', ['test', 'dist', 'build-customizer']);
Expand Down
345 changes: 318 additions & 27 deletions components.html

Large diffs are not rendered by default.

Loading

0 comments on commit 1e0453f

Please sign in to comment.