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.
This commit is contained in:
parent
34b82baa67
commit
3d53766e51
1 changed files with 6 additions and 2 deletions
|
@ -107,7 +107,8 @@ module.exports = function(grunt) {
|
|||
'js/**',
|
||||
'lib/**',
|
||||
'images/**',
|
||||
'plugin/**'
|
||||
'plugin/**',
|
||||
'**.md'
|
||||
]
|
||||
},
|
||||
|
||||
|
@ -129,6 +130,9 @@ module.exports = function(grunt) {
|
|||
},
|
||||
html: {
|
||||
files: [ 'index.html']
|
||||
},
|
||||
markdown: {
|
||||
files: [ './*.md' ]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue