Releases: tssajo/Minify
Releases · tssajo/Minify
Version 1.2.8
- Bug fix by : Ashutosh Sharma aka ashucg. See: #71
It fixes the following issues:
#56
#59
(Thank you, ashucg!)
IMPORTANT!
It is highly recommended to upgrade to the latest version of clean-css-cli !!
Please open a shell (Terminal
on Mac OS X, CMD window
on Windows) and issue the following command:
npm install -g clean-css-cli uglifycss js-beautify html-minifier uglify-js minjson svgo
followed by:
npm update -g clean-css-cli uglifycss js-beautify html-minifier uglify-js minjson svgo
Version 1.2.7 Stable
Version 1.2.7
- Bug fix: It fixes #49
Now you can use the following in your "html-minifier_options" setting: --quote-character '
(Thanks to joonkui95 for noticing and reporting the issue)
IMPORTANT!
Please open up a shell window (Terminal
on Mac OS X, CMD window
on Windows) and issue the following command:
npm install -g clean-css-cli uglifycss js-beautify html-minifier uglify-js minjson svgo
followed by:
npm update -g clean-css-cli uglifycss js-beautify html-minifier uglify-js minjson svgo
Version 1.2.6 Stable
Version 1.2.6
- New feature: Added uglifyjs_options to the settings file
(Thanks to paponius for the suggestion) - Update: Updated the installation instructions because from now on we must install clean-css-cli instead of clean-css
(Thanks to Claude Betancourt for the headsup)
Version 1.2.5 Stable
Version 1.2.5
- Bug fix: Removed the "remove-tag-whitespace" option from the default
html-minifier
options
because it is a too aggressive optimization and it creates invalid HTML
Version 1.2.4 Stable
Version 1.2.4
- Bug fix: A minor fix in Main.sublime-menu
(Thanks to debjan for noticing and sending in a Pull Request) - Bug fix: Removed all remaining references to the obsolete "remove-comments-from-cdata"
html-minifier
option - Improvement: Changed the default options of
html-minifier
to slighly better ones
Version 1.2.3 Stable
Version 1.2.3
- Bug fix: The 3rd party
html-minifier
package has changed, the CLI option "remove-comments-from-cdata" no
longer exists
(Thanks to Jamie Totten for noticing and reporting the problem)
Version 1.2.2 Stable
Version 1.2.2
- Bug fix: In some cases Minify flooded console with errors
(Thanks to Fernando Bueno for noticing and reporting the problem)
Version 1.2.1 Stable
Version 1.2.1
- New feature: When
auto_minify_on_save
option is used,Minify
skips files which already have a .min file
extension - Bug fix: Under special cirmcumstances (dirty file open in editor,
save_first
option set totrue
,Minify
got invoked from the menu or keyboard shortcut and not byauto_minify_on_save
)Minify
did not work
(Thanks to Michael Oakley for noticing and reporting the problem)
Version 1.2.0 Stable
Version 1.2.0
- New feature: JSON file minification and beautification
- New feature: You can now specify which file types are allowed to be minified when
theauto-minify files on save
feature is used
Version 1.1.6 Stable
- New feature: Minify settings can be overridden from Project settings
This allows the use of per project based Minify settings! - Bug fix: When "
auto_minify_on_save
" was set totrue
, the minification
process was running in the foreground instead in a separate thread in ST3