This repository was archived by the owner on Jul 12, 2021. It is now read-only.
Releases: awjudd/l4-assetprocessor
Releases · awjudd/l4-assetprocessor
Laravel 5.2 Upgrade
Updating Dependencies
- Removed the dependency on Laravel Collective
- Updated the libraries to use full releases instead of
devbranches
Configuration Fixing
The BaseProcessor was using the old way of getting configuration values. This update resolves that.
Asset Group Enhancements
- More Laravel 5 Support
- Adding in more flexibility with asset groups so that now you can group the commonly used assets together
Laravel 5 Support
Now supporting Laravel 5
Laravel 4.2 Support
Allowing the tool to use Laravel 4.2 (or 4.1).
Added Asset Auto-loading and Public folder file output
- CDN Support - You are now able to used the
AssetProcessor::cdn()function in order to use a CDN instead of relying on the actual asset processor for everything- This section will automatically be emitted if it exists and you call the
AssetProcessor::scripts()orAssetProcessor::styles()function with it's default values
- This section will automatically be emitted if it exists and you call the
- Added a configuration value
'file.error-on-missing-group'to allow you to bypass the error message if there is a missing asset group requested - Asset Auto-Loading - added in a new section to the config file which will allow you to specify any CDN/local assets to auto-load (cleans up your BaseController)
- Asset Caching - added in the ability to have the assets available outside of your actual application, this will allow you to have assets available without booting up Laravel
Please Note: You will need to either republish, or manually merge your config files for this release.
v1.0.5
v1.0.4
Adding support for internal assets
Added in the processing of internal asset files to make them available when not doing any other processing on them.