only delete .html files during html clean

This commit is contained in:
Ray Elliott 2020-05-16 11:37:40 +01:00
parent 8c4c593225
commit fa1b000bfe
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ function cssClean() {
}
function htmlClean() {
return del(htmlDest, { force: true });
return del(path.join(htmlDest, '*.html'), { force: true });
}
function assetClean() {