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:
Igor Minar 2015-07-01 16:34:08 -07:00
parent ba440a04d1
commit ac24a301bd
1 changed files with 2 additions and 5 deletions

View File

@ -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) {