Skip to content

Commit

Permalink
Version 1.1.4 Stable
Browse files Browse the repository at this point in the history
  • Loading branch information
tssajo committed Apr 24, 2015
1 parent 039a509 commit 56ffaa6
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ Installation in Three Easy Steps
On Windows I simply download the [Windows Installer](https://nodejs.org/#download) directly from the [nodejs.org](https://nodejs.org/) web site.<br><br>
Please make sure that `node` is in your system `PATH`!<br><br>
Here is how you can test if `node` is in your `PATH`:<br><br>
Open up a shell window (`Terminal` on Mac OS X or `CMD window` on Windows) then issue the following command:<br><br>
Open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) then issue the following command:<br><br>
`node --version`<br><br>
If instead of a version number you see an error message such as `command not found` or something similar then `node` is not available via your `PATH` and you must fix this!

3. Install required Node.js CLI apps:<br><br>
Open up a shell window (`Terminal` on Mac OS X or `CMD window` on Windows) then issue the following command:<br><br>
Open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) then issue the following command:<br><br>
`npm install -g clean-css uglifycss js-beautify html-minifier uglify-js svgo`<br><br>
Notes:<br><br>
If you are never going to work with e.g. SVG files then you can leave out `svgo` from the above command and so on.<br><br>
If you already have some or all of the above Node.js CLI apps installed on your system then you can update them to the latest version with the following command:<br><br>
`npm update -g clean-css uglifycss js-beautify html-minifier uglify-js svgo`<br><br>
Please test that the installed Node.js CLI apps are available via your `PATH`:<br><br>
Open up a shell window (`Terminal` on Mac OS X or `CMD window` on Windows) then issue the following command, for example:<br><br>
Open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) then issue the following command, for example:<br><br>
`cleancss --version`<br><br>
If instead of a version number you see an error message such as `command not found` or something similar then `cleancss` is not available via your `PATH` and you must fix this!<br><br>
You may want to do this test for all Node.js CLI apps (`cleancss`, `uglifycss`, `js-beautify`, `html-minifier`, `uglifyjs` and `svgo`).<br><br>
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"1.1.0": "messages/1.1.0.txt",
"1.1.1": "messages/1.1.1.txt",
"1.1.2": "messages/1.1.2.txt",
"1.1.3": "messages/1.1.3.txt"
"1.1.3": "messages/1.1.3.txt",
"1.1.4": "messages/1.1.4.txt"
}
2 changes: 1 addition & 1 deletion messages/1.1.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Version 1.1.0
# IMPORTANT! #
################

Please open up a shell window (Terminal on Mac OS X, CMD window on Windows) and issue the following commands:
Please open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) and issue the following commands:

npm install -g clean-css uglifycss js-beautify html-minifier uglify-js svgo

Expand Down
2 changes: 1 addition & 1 deletion messages/1.1.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Version 1.1.1
# IMPORTANT! #
################

Please open up a shell window (Terminal on Mac OS X, CMD window on Windows) and issue the following commands:
Please open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) and issue the following commands:

npm install -g clean-css uglifycss js-beautify html-minifier uglify-js svgo

Expand Down
2 changes: 1 addition & 1 deletion messages/1.1.2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Version 1.1.2
# IMPORTANT! #
################

Please open up a shell window (Terminal on `Mac OS X`, `CMD window` on Windows) and issue the following commands:
Please open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) and issue the following commands:

npm install -g clean-css uglifycss js-beautify html-minifier uglify-js svgo

Expand Down
17 changes: 17 additions & 0 deletions messages/1.1.4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Version 1.1.4
-------------

* Added support for syntax-based minifying/beautifying
* Fixed a bug which caused SVG file minification not to work on Windows
* Lots of improvements and optimizations in the plugin's source code


################
# IMPORTANT! #
################

Please open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) and issue the following commands:

npm install -g clean-css uglifycss js-beautify html-minifier uglify-js svgo

npm update -g clean-css uglifycss js-beautify html-minifier uglify-js svgo
6 changes: 3 additions & 3 deletions messages/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You must complete the installation by installing the required dependencies

Here is how you can test if `node` is in your `PATH`:

Open up a shell window (`Terminal` on Mac OS X or `CMD window` on Windows) then issue the following command:
Open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) then issue the following command:

node --version

Expand All @@ -28,7 +28,7 @@ You must complete the installation by installing the required dependencies

3. Install required Node.js CLI apps:

Open up a shell window (`Terminal` on Mac OS X or `CMD window` on Windows) then issue the following command:
Open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) then issue the following command:

npm install -g clean-css uglifycss js-beautify html-minifier uglify-js svgo

Expand All @@ -42,7 +42,7 @@ You must complete the installation by installing the required dependencies

Please test that the installed Node.js CLI apps are available via your `PATH`:

Open up a shell window (`Terminal` on Mac OS X or `CMD window` on Windows) then issue the following command, for example:
Open up a shell window (`Terminal` on Mac OS X, `CMD.exe` on Windows) then issue the following command, for example:

cleancss --version

Expand Down

0 comments on commit 56ffaa6

Please sign in to comment.