Does a gulp task have to return anything?

前端 未结 1 1068
青春惊慌失措
青春惊慌失措 2020-12-08 06:54

In online examples showing usage of gulp, some tasks return the stream and others don\'t.

For example, without a return:

gulp.task(\'tsc\', function(         


        
相关标签:
1条回答
  • 2020-12-08 07:23

    If you do not return a stream, then the asynchronous result of each task will not be awaited by its caller, nor any dependent tasks.

    For example, when not returning streams:

    $ gulp scripts
    [21:25:05] Using gulpfile ~/my-project/gulpfile.js
    [21:25:05] Starting 'tsc'...
    [21:25:05] Finished 'tsc' after 13 ms
    [21:25:05] Starting 'scripts'...
    [21:25:05] Finished 'scripts' after 10 ms
    [21:25:05] Compiling TypeScript files using tsc version 1.0.1.0
    

    Note here that the scripts task depends upon the tsc task. It reports that tsc completes in 13 milliseconds, which is definitely too fast to be reasonably believed. Then the scripts task appears to start and complete, again in a very small period of time. Finally, the actual operation performed by tsc commences. Clearly neither tsc nor scripts waited for the compilation step to complete.

    When these tasks return their streams, the output looks rather different:

    $ gulp scripts
    [21:42:25] Using gulpfile ~/my-project/gulpfile.js
    [21:42:25] Starting 'tsc'...
    [21:42:25] Compiling TypeScript files using tsc version 1.0.1.0
    [21:42:32] Finished 'tsc' after 6.65 s
    [21:42:32] Starting 'scripts'...
    [21:42:32] Finished 'scripts' after 204 ms
    

    Here the sequence makes sense, and the reported durations meet expectations.

    0 讨论(0)
提交回复
热议问题