This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/helpers.sh

11 lines
211 B
Bash
Raw Normal View History

2019-06-12 11:58:40 +00:00
#!/usr/bin/env bash
OPERATION=$1
shift
ARGS=$*
case ${OPERATION} in
"sculpin-watch") vendor/bin/sculpin generate --clean --no-interaction --server --watch $ARGS;;
"yarn-watch") yarn run watch $ARGS;;
esac