Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dduan/5659003 to your computer and use it in GitHub Desktop.
Save dduan/5659003 to your computer and use it in GitHub Desktop.
SASS_PATH = resources/sass
COFFEE_PATH = app
all: sass coffee
develop: watch server
server:
python3 -m http.server
watch:
tmux split-window -v "make watchsass"
tmux split-window -h "make watchcoffee"
sass:
compass compile ${SASS_PATH}
coffee:
coffee -o ${COFFEE_PATH} -c src
watchcoffee:
coffee --watch -o ${COFFEE_PATH} -c src
watchsass:
compass watch ${SASS_PATH}
package:
sencha app build package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment