aboutsummaryrefslogtreecommitdiff
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
parent9639b53ff47abc5680ca7a885e65a61768e9d8fe (diff)
parent7621e1085d6389b214f244ac3e3ddb78c381d1c8 (diff)
downloadfreenode-live-2017-presentation-e7de1bd8b0643ae97088fe0329af2c91d7cdc655.tar
freenode-live-2017-presentation-e7de1bd8b0643ae97088fe0329af2c91d7cdc655.tar.gz
merge retire.js #1473
-rw-r--r--Gruntfile.js7
-rw-r--r--package.json1
2 files changed, 8 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' ] );
diff --git a/package.json b/package.json
index 3135f35..fdd2a68 100644
--- a/package.json
+++ b/package.json
@@ -37,6 +37,7 @@
"grunt-contrib-uglify": "~0.9.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-sass": "~1.1.0-beta",
+ "grunt-retire": "~0.3.10",
"grunt-zip": "~0.17.1",
"node-sass": "~3.3.3"
},