diff --git a/Gruntfile.js b/Gruntfile.js index a851845..a17de4d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,7 +107,8 @@ module.exports = function(grunt) { 'js/**', 'lib/**', 'images/**', - 'plugin/**' + 'plugin/**', + '**.md' ] }, @@ -129,7 +130,10 @@ module.exports = function(grunt) { }, html: { files: [ 'index.html'] - } + }, + markdown: { + files: [ './*.md' ] + } } });