all: build start: @nix-shell --command "tmuxinator local" stop: @tmux kill-session -t cooking test: @pulp test --src-path js clean: @rm -rf bower_components @rm -rf node_modules @stack exec cooking clean > /dev/null 2>&1 || true @stack clean > /dev/null install: @yarn install @bower install @stack setup .PHONY: build build: @stack build @stack exec cooking build watch: @nodemon --watch src -e hs --exec 'make watch-command --silent' watch-command: @(killall cooking || :) && sleep 1 && stack build && stack exec cooking watch