From 3d53766e516160b86e408244fac507a054e6426f Mon Sep 17 00:00:00 2001 From: Will Sloan Date: Wed, 14 Oct 2015 00:59:42 -0400 Subject: Add more support for external markdown. The 'grunt watch' command now also watches for changes to external markdown. The 'grunt package' command now packages all external markdown files for rapid deployment in static enviroments. --- Gruntfile.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Gruntfile.js') 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' ] + } } }); -- cgit v1.2.3