Minify less files output if enabled

This commit is contained in:
sl1nk3 2014-06-20 04:53:04 -04:00
parent b3bbfb154b
commit e2b11591af

View File

@ -94,6 +94,7 @@ class CombineAssets
if ($this->useMinify) { if ($this->useMinify) {
$this->registerFilter('js', new \Assetic\Filter\JSMinFilter); $this->registerFilter('js', new \Assetic\Filter\JSMinFilter);
$this->registerFilter('css', new \October\Rain\Support\Filters\StylesheetMinify); $this->registerFilter('css', new \October\Rain\Support\Filters\StylesheetMinify);
$this->registerFilter('less', new \October\Rain\Support\Filters\StylesheetMinify);
} }
} }