only delete .html files during html clean
This commit is contained in:
parent
8c4c593225
commit
fa1b000bfe
|
@ -37,7 +37,7 @@ function cssClean() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function htmlClean() {
|
function htmlClean() {
|
||||||
return del(htmlDest, { force: true });
|
return del(path.join(htmlDest, '*.html'), { force: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
function assetClean() {
|
function assetClean() {
|
||||||
|
|
Loading…
Reference in New Issue