diff options
author | Hakim El Hattab | 2015-10-26 14:40:56 +0100 |
---|---|---|
committer | Hakim El Hattab | 2015-10-26 14:40:56 +0100 |
commit | 2a757794fb86b2b3c2a1e7b1e1c1ab563e9f3b9d (patch) | |
tree | f9afd2453e66f1e9c0b3cf76e2571a35f1c148e1 /Gruntfile.js | |
parent | 5949e4352438c7c2a0c86d8dd0222c530a62d225 (diff) | |
parent | 3d53766e516160b86e408244fac507a054e6426f (diff) |
Merge pull request #1399 from sloan-848/markdown-packaging
Add more support for external markdown.
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' ] + } } }); |