Add gulp buildpack.

This commit is contained in:
Simo Kinnunen
2014-07-30 17:48:51 +09:00
parent 378cf0af46
commit 05549ce32a
4 changed files with 64 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# bin/detect <build-dir>
if [ -f $1/gulpfile.js ]; then
echo "Gulp" && exit 0
else
echo "no" && exit 1
fi