Releases: matthiasmullie/minify
Releases · matthiasmullie/minify
1.3.33
PHPDoc cleanup
1.3.32: Don't strip } when stripping empty tags preceeded by 2 }s
1.3.31: Combine imports/import files earlier
If we wait until after adjusting the paths relative to the new target, we may fail to import them because the path they'll be relative to may not yet exist. If we do it after moving path
1.3.30: Add tests for symlinked files
Fixes #77
1.3.29
Stop testing 5.3 on Travis, it no longer supports it
1.3.28: Merge pull request #62 from EkkoSense/master
Allow URL-rewriting without saving the minified content to the file system
1.3.27: Don't collapse line feeds after "return"
return is not guaranteed to be followed by a return value. It could just be "return", followed by nothing (void return), not even a semicolon, just line feed (ASI) Whatever is next could, for example, be another operator. We may just need ASI to kick in there, so keep the line feed after return. Fixes issue #54