diff options
author | Will Sloan | 2015-10-14 00:59:42 -0400 |
---|---|---|
committer | Will Sloan | 2015-10-14 00:59:42 -0400 |
commit | 3d53766e516160b86e408244fac507a054e6426f (patch) | |
tree | 3d43e461c1d3515df9920de510f4dc485b691652 /Gruntfile.js | |
parent | 34b82baa6724a336ede020b33e1bd002529def18 (diff) |
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.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 8 |
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' ] + } } }); |