aboutsummaryrefslogtreecommitdiff
path: root/gruntfile.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2013-02-27 13:20:24 -0500
committerHakim El Hattab <hakim.elhattab@gmail.com>2013-02-27 13:20:24 -0500
commit3f740c8553e4a961f552a8ec01e0a8b1d2599b6f (patch)
tree84991604bbfa3a580aeefe42d4d83ce9721037bd /gruntfile.js
parent9f1c5a0ceae03b281b6f35b33412fd8dd1860eee (diff)
downloadperl-software-in-gnu-guix-3f740c8553e4a961f552a8ec01e0a8b1d2599b6f.tar
perl-software-in-gnu-guix-3f740c8553e4a961f552a8ec01e0a8b1d2599b6f.tar.gz
merge grunt update to 0.4 (#350)
Diffstat (limited to 'gruntfile.js')
-rw-r--r--gruntfile.js17
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