Build walks srcDir, minifying HTML, CSS and JS files and copying all
other files into distDir, then logs a summary of the run. Files are
processed concurrently, one worker per CPU.
type Stats struct {
TotalFiles int ProcessedFiles int TotalSaved int64 OriginalSize int64 TotalReduction float64// contains filtered or unexported fields
}
Stats holds aggregate results of a build run. The mutex guards the
fields updated by concurrent build workers.