diff options
| author | Chris Rebert <[email protected]> | 2013-09-10 19:21:44 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-09-10 19:22:20 -0700 |
| commit | 2b5d7d23d0e6de93cd0ba8b1d4eee480e4cb504d (patch) | |
| tree | 886c594b1a15e3fc5cb321566562db8da5b6407f /Gruntfile.js | |
| parent | 1f3a87a8a0ba734778ca12681124c5a2385d1139 (diff) | |
| download | bootstrap-2b5d7d23d0e6de93cd0ba8b1d4eee480e4cb504d.tar.xz bootstrap-2b5d7d23d0e6de93cd0ba8b1d4eee480e4cb504d.zip | |
generate CSS banners via Gruntfile; fixes #10101
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 2381ab296..9fb641f34 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -8,7 +8,7 @@ module.exports = function(grunt) { // Metadata. pkg: grunt.file.readJSON('package.json'), - banner: '/**\n' + + banner: '/*!\n' + '* Bootstrap v<%= pkg.version %> by @fat and @mdo\n' + '* Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + '* Licensed under <%= _.pluck(pkg.licenses, "url").join(", ") %>\n' + @@ -73,7 +73,8 @@ module.exports = function(grunt) { recess: { options: { - compile: true + compile: true, + banner: '<%= banner %>' }, bootstrap: { src: ['less/bootstrap.less'], |
