asset_compress
asset_compress copied to clipboard
An asset compression plugin for CakePHP. Provides file concatenation and a flexible filter system for preprocessing and minification.
Hi mark, The console is not taking care of plugin's view path by default. How can we set that ! We created a lot a plugins here and we need...
I can see people have touched on this in the past but I don't see any official requests for this feature. I would love to see it. I am looking...
i'm migrate cake3 to cake 4 but i get this error Helper class AssetCompressHelper could not be found in line $this->loadHelper('AssetCompress.AssetCompress'); in AppView.php @markstory please help
Hi @markstory. I want to use an automatic CSS prefixer but I don't see any filter for this task. Creating filter is easy but repetitive work. Most or all filters...
home page : `http://localhost/sub_folder` ```php $this->AssetCompress->url('css-combined.css'); ``` ### What happened returns ``` /assets/css/css-combined.v123.css ``` ### What you expected to happen should be ``` /sub_folder/assets/css/css-combined.v123.css ``` version : markstory/asset_compress | 3.3.0...
I have a lot of js files in webroot/js folder. And I want to build js files separately for each. is there any to do this in easily with a...
Hi, I am trying to compress assets in both main webroot folder and plugin webroot folder. `webroot/assets/js/*.js => webroot/js/*.js` `{plugin name}/webroot/assets/js/*.js => {plugin name}/webroot/js/*.js` the problem is that there is...
Consider 3 files: test/a.js: ``` var a; ``` test/b.js: ``` var b; ``` test/c.js: ``` var c; ``` And the following configuration: ``` [a.js] files[] = test/a.js [b.js] extend =...
I think it should be less.php
So I followed the documentation (2.x) but cant get it to work and it might be because of my folders management. I have something like this Project |-- Cakephp 1...