forked from coolaj86/node-installer.sh
update docs
This commit is contained in:
parent
73e9a6495c
commit
fa7b6a9725
|
@ -20,7 +20,7 @@ This is what gets installed:
|
|||
* curl
|
||||
* wget
|
||||
* git
|
||||
* xcode / build-essential / gcc
|
||||
* xcode / brew / build-essential / gcc
|
||||
* node
|
||||
* jshint
|
||||
* bower
|
||||
|
|
|
@ -157,18 +157,18 @@ fi
|
|||
|
||||
# less
|
||||
if [ -z "$(which lessc | grep lessc)" ]; then
|
||||
echo "installing lessc..."
|
||||
echo "installing lessc (less)..."
|
||||
npm install --silent less -g > /dev/null
|
||||
else
|
||||
echo "lessc already installed"
|
||||
echo "lessc (less) already installed"
|
||||
fi
|
||||
|
||||
# uglifyjs
|
||||
if [ -z "$(which uglifyjs | grep uglifyjs)" ]; then
|
||||
echo "installing uglifyjs..."
|
||||
echo "installing uglifyjs (uglify-js)..."
|
||||
npm install --silent uglify-js -g > /dev/null
|
||||
else
|
||||
echo "uglifyjs already installed"
|
||||
echo "uglifyjs (uglify-js) already installed"
|
||||
fi
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue