Search for Gulp tasks in more locations

Searches for tasks in the following locations: gulpfile.js, gulpfile.babel.js, and gulp directory of a project.
This commit is contained in:
Adam Beck 2015-10-15 15:32:22 -04:00
commit 426c562591

View file

@ -20,7 +20,7 @@
# in the current directory. # in the current directory.
# #
function $$gulp_completion { function $$gulp_completion {
compls="$(grep -Eo "gulp.task\((['\"](([a-zA-Z0-9]|-)*)['\"],)" gulpfile.js 2>/dev/null | grep -Eo "['\"](([a-zA-Z0-9]|-)*)['\"]" | sed s/"['\"]"//g | sort)" compls="$(grep -Eo "gulp.task\((['\"](([a-zA-Z0-9]|-)*)['\"],)" gulpfile.js gulpfile.babel.js gulp/*.js 2>/dev/null | grep -Eo "['\"](([a-zA-Z0-9]|-)*)['\"]" | sed s/"['\"]"//g | sort)"
completions=(${=compls}) completions=(${=compls})
compadd -- $completions compadd -- $completions