다음은 작업 종속성으로 대체하는 방법을 모르는 구성된 작업입니다.
...
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
스크립트 파일이 변경 될 때까지 기다리지 않고 즉시이 작업을 강제 실행하는 것이 좋습니다.