?yb? 2014-04-02 22:45 采纳率: 100%
浏览 658

如何按顺序一个接一个地运行 Gulp 任务

in the snippet like this:

gulp.task "coffee", ->
    gulp.src("src/server/**/*.coffee")
        .pipe(coffee {bare: true}).on("error",gutil.log)
        .pipe(gulp.dest "bin")

gulp.task "clean",->
    gulp.src("bin", {read:false})
        .pipe clean
            force:true

gulp.task 'develop',['clean','coffee'], ->
    console.log "run something else"

In develop task I want to run clean and after it's done, run coffee and when that's done, run something else. But I can't figure that out. This piece doesn't work. Please advise.

转载于:https://stackoverflow.com/questions/22824546/how-to-run-gulp-tasks-sequentially-one-after-the-other

  • 写回答

11条回答 默认 最新

  • hurriedly% 2014-10-15 19:29
    关注

    The only good solution to this problem can be found in the gulp documentation which can be found here

    var gulp = require('gulp');
    
    // takes in a callback so the engine knows when it'll be done
    gulp.task('one', function(cb) {
      // do stuff -- async or otherwise
      cb(err); // if err is not null and not undefined, the orchestration will stop, and 'two' will not run
    });
    
    // identifies a dependent task must be complete before this one begins
    gulp.task('two', ['one'], function() {
      // task 'one' is done now
    });
    
    gulp.task('default', ['one', 'two']);
    // alternatively: gulp.task('default', ['two']);
    
    评论

报告相同问题?

悬赏问题

  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式