npm install @taskr/htmlmin> Minify HTML with Taskr.
```
npm install --save-dev @taskr/htmlmin
`js`
exports.minify = function * (task) {
yield task.source('src/*.html')
.htmlmin({ removeComments:false })
.target('dist');
}
This plugin offers no unique options.
However, it has a number of default settings that you may override.
Please see HTML-Minifier's Options for a full list of available options.
Any issues or questions can be sent to the Taskr monorepo.
Please be sure to specify that you are using @taskr/htmlmin`.
MIT © Luke Edwards