build(gulp): remove the tmp cleanup code
this is no longer necessary and if anyone runs two gulp processes in parallel can actually cause issues because once one of the processes ends, it delets the tmp dir which can affect the remaining process
This commit is contained in:
parent
ba440a04d1
commit
ac24a301bd
|
@ -1022,11 +1022,8 @@ gulp.task('build.dart.material', ['build/packages.dart'], function() {
|
|||
});
|
||||
|
||||
|
||||
gulp.task('cleanup.builder', function(done) {
|
||||
angularBuilder.cleanup().then(function() {
|
||||
del('tmp', done); // TODO(iminar): remove after 2015-06-01
|
||||
// this is here just to cleanup old files that we leaked in the past
|
||||
});
|
||||
gulp.task('cleanup.builder', function() {
|
||||
return angularBuilder.cleanup();
|
||||
});
|
||||
|
||||
gulp.task('benchpress.bundle', ['build/clean.benchpress.bundle', 'build.js.cjs'], function(cb) {
|
||||
|
|
Loading…
Reference in New Issue