Publish HTML quickly. https://html.house
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.
 
 
 
 

12 lines
298 B

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