Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

28 rindas
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