Defining tasks with description
See original GitHub issueI see gulp -T
and gulp --tasks-simple
provides list of tasks like the following
$ gulp --tasks-simple
clean
build:js
build:css
docs
watch
build
test
I wished that it looked like the following
$ gulp -T
clean clear build directory
build:js build minified javascript
build:css build css from sass files
docs generate documentation
watch run monitoring tasks for .js and .sass
build run all build tasks
test run a test
From the API documentation, I see task “description” is not a part of gulp.task
parameters since syntax is like this gulp.task(name[, deps], fn)
I googled around if defining description for gulp.task is possible, then find this help plugin that overwrites gulp.task and accepts description as help.
I think it is a good idea to accept description like the following and wished it was the core feature of gulp without using extra plugin.
gulp.task(name[, description, deps, fn, taskOptions])
Issue Analytics
- State:
- Created 9 years ago
- Comments:32 (24 by maintainers)
Top Results From Across the Web
How To Write Project Task Description 2016 | Yanado Blog
How to Write Better Task Descriptions. First, define the purpose by asking “Why?” You need to know where you're going before plotting the ......
Read more >What is a task? Definition, examples, and how to get more done
In project management, a task is a work item or activity with a specific purpose related to the larger goal. It's a necessary...
Read more >How do you define a task? - Ensemble Consulting Group
If you want to markedly improve productivity, it pays to pay attention to the proper definition of a task.
Read more >Task Definition & Meaning - Merriam-Webster
noun ; a · a usually assigned piece of work often to be finished within a certain time ; b · something hard...
Read more >Defining Tasks and Activities in Project Management
The purpose of task definition is to allow you to break down the work of the project into manageable components so that you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
No, this issue has been raised about 20 times. Please read those threads for more info.
https://github.com/gulpjs/gulp/search?q=description&type=Issues