A simple page for all your links.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
218 B

  1. #!/bin/sh
  2. # Install Less via npm
  3. if [ ! -e "$(which lessc)" ]; then
  4. sudo npm install -g less
  5. sudo npm install -g less-plugin-clean-css
  6. else
  7. echo LESS $(npm view less version 2>&1 | grep -v WARN) is installed
  8. fi