diff --git a/gulpfile.js b/gulpfile.js index 8d6bc0feb9..de56b4dee2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1132,11 +1132,7 @@ gulp.task('bundles.js.umd.min', ['!bundles.js.umd', '!bundle.ng.polyfills'], fun var uglify = require('gulp-uglify'); // minify production bundles - return gulp.src([ - 'dist/js/bundle/angular2-polyfills.js', - 'dist/js/bundle/angular2.umd.js', - 'dist/js/bundle/angular2_all.umd.js' - ]) + return gulp.src(['dist/js/bundle/angular2-polyfills.js', 'dist/js/bundle/angular2.umd.js']) .pipe(uglify()) .pipe(rename({extname: '.min.js'})) .pipe(gulp.dest('dist/js/bundle'));