-
-
Save snichme/8fb486c3338f69462dfb to your computer and use it in GitHub Desktop.
Grunt or Gulp or Broccoli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| if [ -s gruntfile.js ]; then | |
| grunt $@ | |
| elif [ -s gulpfile.js ]; then | |
| gulp $@ | |
| elif [ -s brocfile.js ]; then | |
| broccoli $@ | |
| else | |
| echo "No build file found, checked for gruntfile.js, gulpfile.js and brocfile.js" | |
| exit -1 | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment