1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-18 20:01:21 +02:00

Make CSSmin the default CSS compressor

This commit is contained in:
Steve Clay
2015-09-28 20:30:20 -04:00
parent db1ea29133
commit 0bc3769802
14 changed files with 33 additions and 41 deletions

View File

@@ -52,7 +52,7 @@ class Minify_Controller_Page extends Minify_Controller_Base {
if (isset($options['minifyAll'])) {
// this will be the 2nd argument passed to Minify_HTML::minify()
$sourceSpec['minifyOptions'] = array(
'cssMinifier' => array('Minify_CSS', 'minify')
'cssMinifier' => array('Minify_CSSmin', 'minify')
,'jsMinifier' => array('JSMin\\JSMin', 'minify')
);
unset($options['minifyAll']);