refactor(gulpfile.js): cleanup obsolete file reference

Closes #5738
This commit is contained in:
Pawel Kozlowski 2015-12-09 15:33:38 +01:00
parent cf3ce171a5
commit 24dcd267b8
1 changed files with 1 additions and 5 deletions

View File

@ -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'));