From 24dcd267b879856119e2c64d93f9fe024560ef4f Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Wed, 9 Dec 2015 15:33:38 +0100 Subject: [PATCH] refactor(gulpfile.js): cleanup obsolete file reference Closes #5738 --- gulpfile.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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'));