นี่คืองานที่ประกอบขึ้นซึ่งฉันไม่รู้ว่าจะแทนที่ด้วยการอ้างอิงงานได้อย่างไร
...
gulp.task('watch', function () {
var server = function(){
gulp.run('jasmine');
gulp.run('embed');
};
var client = function(){
gulp.run('scripts');
gulp.run('styles');
gulp.run('copy');
gulp.run('lint');
};
gulp.watch('app/*.js', server);
gulp.watch('spec/nodejs/*.js', server);
gulp.watch('app/backend/*.js', server);
gulp.watch('src/admin/*.js', client);
gulp.watch('src/admin/*.css', client);
gulp.watch('src/geojson-index.json', function(){
gulp.run('copygeojson');
});
});
บันทึกการเปลี่ยนแปลงที่เกี่ยวข้อง https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md#35 [เลิกใช้ gulp.run]
scripts
แต่มันก็สมเหตุสมผลเช่นกันที่จะบังคับให้รันงานนี้ทันที (โดยไม่ต้องรอจนกว่าไฟล์สคริปต์บางไฟล์จะเปลี่ยน)