diff --git a/README.md b/README.md index 19825df9..a5a0b587 100644 --- a/README.md +++ b/README.md @@ -26,4 +26,14 @@ Limited-mode features: - only 1 panel available - no keybinding - no local caching -- full loading of all web page(with styles, js-scripts, html-page etc). \ No newline at end of file +- full loading of all web page(with styles, js-scripts, html-page etc). + +Additional modules: +--------------- +Cloudcmd not using additional modules for main functionality. +But for minification and optimization tricks optional can be +assingned (and installed) modules: +- [UglifyJS] (https://github.com/mishoo/UglifyJS); +- [clean-css] (https://github.com/GoalSmashers/clean-css) +- [html-minifier] (https://github.com/kangax/html-minifier) +- [css-b64-images] (https://github.com/Filirom1/css-base64-images) \ No newline at end of file diff --git a/lib/server/minify.js b/lib/server/minify.js index e6e96ec6..1fafbca0 100644 --- a/lib/server/minify.js +++ b/lib/server/minify.js @@ -232,7 +232,7 @@ function base64_images(pFileContent_s){ console.log('can\'n load clean-css \n' + 'to use images to base64 convertation you need to install css-base64-images \n' + 'npm install -g css-b64-images\n' + - 'https://github.com/GoalSmashers/clean-css'); + 'https://github.com/Filirom1/css-base64-images'); return false; } b64img.fromString(pFileContent_s, '.','', function(err, css){