Skip to content

Releases: matthiasmullie/minify

1.3.33

16 Mar 09:02
Compare
Choose a tag to compare
PHPDoc cleanup

1.3.32: Don't strip } when stripping empty tags preceeded by 2 }s

15 Jan 18:23
Compare
Choose a tag to compare

1.3.31: Combine imports/import files earlier

15 Jan 18:23
Compare
Choose a tag to compare
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

15 Jan 18:23
Compare
Choose a tag to compare

1.3.29

18 Dec 14:00
Compare
Choose a tag to compare
Stop testing 5.3 on Travis, it no longer supports it

1.3.28: Merge pull request #62 from EkkoSense/master

20 Aug 14:52
Compare
Choose a tag to compare
Allow URL-rewriting without saving the minified content to the file system

1.3.27: Don't collapse line feeds after "return"

09 Jul 13:15
Compare
Choose a tag to compare
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