Mark Story
Mark Story
The config parsing is in a dependency of AssetCompress'. That code [is here](https://github.com/markstory/mini-asset/blob/master/src/AssetConfig.php#L214-L218). You can also define intermediate targets in your config file and then 'extend' targets. This might be...
How would AssetCompress know which themes to scan/build? Should theme files ve able to define new filters/override filters? Or only define new targets?
You should use a minifier that you can use in both dev + prod. There are a number of PHP based minifiers, or nodejs ones. Keeping dev + prod consistent...
Sounds like an interesting idea, would the assets to move/symlink be tied to specific build targets?
AssetCompress already passes search paths into less/sass. As long as your vendor files are on the plugin's search path you should already be able to use them. I can see...
It didn't work out from what I remember, but that was a long time ago.
Root paths get extra tricky when you are dealing with applications in sub-directories as well. It sounds like URL rewriting is going to be pretty tricky, would we be able...
In my projects, I either use absolute URLs images - as most of the things I work on don't live in a subdirectory. For local development I create virtualhosts like...
What would the setting do? Would it generate .gz version of the minified assets?
If you're dealing with a CDN is there any reason you wouldn't use non-gzipped assets? It sounds like generating gzipped files would be part of your build/deploy process. Replacing the...