Skip to content
Snippets Groups Projects
Commit 3d53766e authored by Will Sloan's avatar Will Sloan
Browse files

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.
parent 34b82baa
No related branches found
No related tags found
No related merge requests found
......@@ -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' ]
}
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment