Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

28 wiersze
482 B

  1. #!/bin/sh
  2. #
  3. # Configuration
  4. #
  5. # sass source
  6. SASS_SOURCE_PATH="scss"
  7. # sass options
  8. SASS_OPTIONS="--source-map=true --style=nested"
  9. # css target
  10. CSS_TARGET_PATH="css"
  11. #
  12. # Check prerequisites
  13. #
  14. wtfile=$(command -v wt) || { echo "install wellington with 'brew install wellington"; exit 1; }
  15. #
  16. # Watch folder for changes
  17. #
  18. cd -P `pwd`
  19. $wtfile compile "$SASS_SOURCE_PATH" -b "$CSS_TARGET_PATH" $SASS_OPTIONS
  20. $wtfile watch "$SASS_SOURCE_PATH" -b "$CSS_TARGET_PATH" $SASS_OPTIONS