diff --git a/config/config.php b/config/config.php index fe5b22d..f1aa219 100644 --- a/config/config.php +++ b/config/config.php @@ -1,4 +1,16 @@ array( - 'path/to/css/file1.css', - 'path/to/css/file2.css' - ), - */ - ); \ No newline at end of file +/** + * Easy Min + * + * Simple minification for better website performance + * + * @author Timothy J. Warren + * @copyright Copyright (c) 2012 + * @link https://github.com/aviat4ion/Easy-Min + * @license http://philsturgeon.co.uk/code/dbad-license + */ + +// -------------------------------------------------------------------------- + +/** + * This is the config array for javascript files to concatenate and minify + */ +return array( + /* + For each group create an array like so + + 'my_group' => array( + 'path/to/js/file1.js', + 'path/to/js/file2.js' + ), + */ +); + +// End of js_groups.php \ No newline at end of file diff --git a/css.php b/css.php index 4fbd1f4..5cd9f1f 100644 --- a/css.php +++ b/css.php @@ -1,4 +1,17 @@