diff options
author | Hakim El Hattab | 2016-06-28 15:43:11 +0200 |
---|---|---|
committer | Hakim El Hattab | 2016-06-28 15:43:11 +0200 |
commit | e7de1bd8b0643ae97088fe0329af2c91d7cdc655 (patch) | |
tree | dce1d893947ef0a86640e496a109e04831dfcd90 /Gruntfile.js | |
parent | 9639b53ff47abc5680ca7a885e65a61768e9d8fe (diff) | |
parent | 7621e1085d6389b214f244ac3e3ddb78c381d1c8 (diff) |
merge retire.js #1473
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 87630d5..7cea2a5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -134,6 +134,12 @@ module.exports = function(grunt) { options: { livereload: true } + }, + + retire: { + js: ['js/reveal.js', 'lib/js/*.js', 'plugin/**/*.js'], + node: ['.'], + options: {} } }); @@ -148,6 +154,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks( 'grunt-contrib-connect' ); grunt.loadNpmTasks( 'grunt-autoprefixer' ); grunt.loadNpmTasks( 'grunt-zip' ); + grunt.loadNpmTasks( 'grunt-retire' ); // Default task grunt.registerTask( 'default', [ 'css', 'js' ] ); |