Releases: mmanos/laravel-casset
Releases · mmanos/laravel-casset
Version 1.4.0
Changed syntax for including assets from packages to require both the vendor name and package name. This removes the need to scan through directories looking for the proper vendor path and significantly reduces page load times.
Old Syntax: Casset::add('jquery::/jquery.min.js');
New Syntax: Casset::add('frameworks/jquery::/jquery.min.js');
Version 1.3.0
Adds the ability to optionally defer processing/combining assets to a controller.
Remember to update the alias in config/app.php to point to the new Facade class.
Version 1.2.4
Merge pull request #5 from dmyers/master Added ability to get cdn url for an asset.