diff options
author | Hakim El Hattab | 2018-08-01 10:34:55 +0200 |
---|---|---|
committer | Hakim El Hattab | 2018-08-01 10:34:55 +0200 |
commit | b6aa0cac2392d69c93bda583c88cb6c4fd82b095 (patch) | |
tree | 4adab8ecbbce1db6a785700503d142dbad04c735 /Gruntfile.js | |
parent | f6f7f58537c21435c4e2ffe8b538216eeac16ae4 (diff) | |
parent | b9bb353a11bb7bcd1f79a40a80e0d5dfcca05591 (diff) |
Merge branch 'dev' of github.com:hakimel/reveal.js
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index b6ef63b..8d8300b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -15,7 +15,7 @@ module.exports = function(grunt) { ' * http://revealjs.com\n' + ' * MIT licensed\n' + ' *\n' + - ' * Copyright (C) 2017 Hakim El Hattab, http://hakim.se\n' + + ' * Copyright (C) 2018 Hakim El Hattab, http://hakim.se\n' + ' */' }, @@ -26,7 +26,7 @@ module.exports = function(grunt) { uglify: { options: { banner: '<%= meta.banner %>\n', - screwIE8: false + ie8: true }, build: { src: 'js/reveal.js', @@ -78,6 +78,7 @@ module.exports = function(grunt) { eqnull: true, browser: true, expr: true, + loopfunc: true, globals: { head: false, module: false, @@ -164,7 +165,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks( 'grunt-retire' ); grunt.loadNpmTasks( 'grunt-sass' ); grunt.loadNpmTasks( 'grunt-zip' ); - + // Default task grunt.registerTask( 'default', [ 'css', 'js' ] ); |