Contributors: kasparsd
Tags: css, js, combine, minify, concatenate, optimization, performance, speed
Requires at least: 3.1
Tested up to: 3.9
Stable tag: trunk
License: GPLv2 or later
Combine CSS files and Javascript files into single file in the correct order. Use the latest modified time in filename generation to ensure freshness. Load all external Javascript files asynchronosly.
TODO
- All CSS files combined in a single file
- All external Javascript files loading asynchronosly
- Refactor into a class.
- Deal with plugins calling
wp_print_scripts()
directly. Looking at you, Akismet.
- Use a global version number instead of deleting files for cache purge.
- Add filters
minit-exclude-css
andminit-exclude-css
to exclude files from Minit. - Add action
minit-cache-purge-delete
that deletes all Minit files. Can be called from cron, for example. - Call action
minit-cache-purged
when the global cache version number is bumped.
- Include is_ssl() in cache key
- Don't use
set_url_scheme()
because it assumes SSL by default
- Use
set_url_scheme()
instead of anis_ssl()
check
- Add SSL support
- Add a filter to allow other plugins interact with combined file content.
- Add "Clear cache" link in the plugin list.
- Store cache file path in transient so that we can verify it exists before using it.
- Make sure that cache file exists before using it.
- Set cache lifetime to 24h and use file versions as cache key.
- Mark merged items as done.
- Use cache key for script handle key instead of minit-css and minit-js.
- Add a caching layer.
- Print related inline scripts, if any.
- Add remaining scripts to the print queue.
- Almost a complete rewrite to merge the functionality of minit logic.
- Fixes CSS URL path for scripts that use relative URLs.
- Check if the WP_Scripts object exists before doing anything.
- Fix JS file dependency resolving.
- Initial public release.