-
```
$option = array('cssMinifier' => array('Minify_CSS', 'minify'), 'jsMinifier' =>
array('JSMin', 'minify'));
echo Minify_HTML::minify($html, $option);
in html have some javascript template
eg:
.…
-
```
$option = array('cssMinifier' => array('Minify_CSS', 'minify'), 'jsMinifier' =>
array('JSMin', 'minify'));
echo Minify_HTML::minify($html, $option);
in html have some javascript template
eg:
.…
-
Currently debugging an issue in the minified Eclipse Paho Javascript library: http://download.eclipse.org/paho/1.0/paho.javascript-1.0.1.zip
In the original code we have some getters and setters i.e.…
ghost updated
8 years ago
-
```
Not really a defect.
Will there be an overhaul of the class structure in the near future?
My problem is that I'm only using the compressor classes (Minify_CSS and
JSMin), I'm serving the files for…
-
```
Not really a defect.
Will there be an overhaul of the class structure in the near future?
My problem is that I'm only using the compressor classes (Minify_CSS and
JSMin), I'm serving the files for…
-
```
Not really a defect.
Will there be an overhaul of the class structure in the near future?
My problem is that I'm only using the compressor classes (Minify_CSS and
JSMin), I'm serving the files for…
-
I was configured to use the Google Closure Compiler:
```
javascript_compressor: closure
```
But was unwittingly falling back to jsmin because
```
require 'closure-compiler'
```
was failing silentl…
ses4j updated
10 years ago
-
`sinatra-assetpack` is serving SASS in plain-text format, with no conversion or compression. I have arranged the assets differently than shown in the examples:
```
./app.rb
./config.ru
./Gemfile
./Ge…
-
I have a class `.layout-header .layout-header__logo--small`. When minified it now becomes `.layout-header.layout-header__logo--small` which of course fails. This wasn't happening before so I'm not sur…
-
The project currently is not PSR-4 compatible.
To be compatible the namespaces should be `PHPWee\HTMLMin`, `PHPWee\CSSMin`, `PHPWee\JSMin` or you should put all that libraries into one directory "PHPW…