From 3d53766e516160b86e408244fac507a054e6426f Mon Sep 17 00:00:00 2001
From: Will Sloan <sloan.848@osu.edu>
Date: Wed, 14 Oct 2015 00:59:42 -0400
Subject: [PATCH] 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(-)

diff --git a/Gruntfile.js b/Gruntfile.js
index a8518451..a17de4df 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' ]
+      }
 		}
 
 	});
-- 
GitLab