Merge pull request #1399 from sloan-848/markdown-packaging
Add more support for external markdown.
This commit is contained in:
commit
2a757794fb
1 changed files with 6 additions and 2 deletions
|
@ -107,7 +107,8 @@ module.exports = function(grunt) {
|
||||||
'js/**',
|
'js/**',
|
||||||
'lib/**',
|
'lib/**',
|
||||||
'images/**',
|
'images/**',
|
||||||
'plugin/**'
|
'plugin/**',
|
||||||
|
'**.md'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -129,7 +130,10 @@ module.exports = function(grunt) {
|
||||||
},
|
},
|
||||||
html: {
|
html: {
|
||||||
files: [ 'index.html']
|
files: [ 'index.html']
|
||||||
}
|
},
|
||||||
|
markdown: {
|
||||||
|
files: [ './*.md' ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue