列出 grunt.js 任务

我正在想办法打印一份清单,列出所有可用的繁琐工作:

$ rake -T

咕哝的等价物是什么。

$ grunt -T

  • 连接
  • Jasmine
  • 缩小
25120 次浏览

grunt --help lists available tasks.

Workaround for the list in sh/bash in case you need to trigger something and can't modify the original code:

grunt -h --no-color | sed -n '/^Available tasks/,/^$/ {s/^  *\([^ ]\+\)  [^ ]\+.*$/\1/p}'