aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2016-06-28 15:43:11 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2016-06-28 15:43:11 +0200
commite7de1bd8b0643ae97088fe0329af2c91d7cdc655 (patch)
treedce1d893947ef0a86640e496a109e04831dfcd90 /Gruntfile.js
parent9639b53ff47abc5680ca7a885e65a61768e9d8fe (diff)
parent7621e1085d6389b214f244ac3e3ddb78c381d1c8 (diff)
downloadfreenode-live-2017-presentation-e7de1bd8b0643ae97088fe0329af2c91d7cdc655.tar
freenode-live-2017-presentation-e7de1bd8b0643ae97088fe0329af2c91d7cdc655.tar.gz
merge retire.js #1473
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js7
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' ] );