aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Sloan <sloan.848@osu.edu>2015-10-14 00:59:42 -0400
committerWill Sloan <sloan.848@osu.edu>2015-10-14 00:59:42 -0400
commit3d53766e516160b86e408244fac507a054e6426f (patch)
tree3d43e461c1d3515df9920de510f4dc485b691652
parent34b82baa6724a336ede020b33e1bd002529def18 (diff)
downloadfreenode-live-2017-presentation-3d53766e516160b86e408244fac507a054e6426f.tar
freenode-live-2017-presentation-3d53766e516160b86e408244fac507a054e6426f.tar.gz
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.
-rw-r--r--Gruntfile.js8
1 files changed, 6 insertions, 2 deletions
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' ]
+ }
}
});