diff options
author | Hakim El Hattab | 2013-02-27 13:20:24 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-02-27 13:20:24 -0500 |
commit | 3f740c8553e4a961f552a8ec01e0a8b1d2599b6f (patch) | |
tree | 84991604bbfa3a580aeefe42d4d83ce9721037bd /gruntfile.js | |
parent | 9f1c5a0ceae03b281b6f35b33412fd8dd1860eee (diff) |
merge grunt update to 0.4 (#350)
Diffstat (limited to 'gruntfile.js')
-rw-r--r-- | gruntfile.js | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gruntfile.js b/gruntfile.js index bb86019..bd6858a 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -5,7 +5,7 @@ module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), meta: { - banner: + banner: '/*!\n' + ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' + ' * http://lab.hakim.se/reveal-js\n' + @@ -25,13 +25,13 @@ module.exports = function(grunt) { }, uglify: { - options: { - banner: '<%= meta.banner %> \n' - }, - build: { - src: 'js/reveal.js', - dest: 'js/reveal.min.js' - } + options: { + banner: '<%= meta.banner %>\n' + }, + build: { + src: 'js/reveal.js', + dest: 'js/reveal.min.js' + } }, cssmin: { @@ -80,4 +80,3 @@ module.exports = function(grunt) { grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify' ] ); }; -
\ No newline at end of file |