Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 24dcd26

Browse files
refactor(gulpfile.js): cleanup obsolete file reference
Closes #5738
1 parent cf3ce17 commit 24dcd26

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

gulpfile.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,11 +1132,7 @@ gulp.task('bundles.js.umd.min', ['!bundles.js.umd', '!bundle.ng.polyfills'], fun
11321132
var uglify = require('gulp-uglify');
11331133

11341134
// minify production bundles
1135-
return gulp.src([
1136-
'dist/js/bundle/angular2-polyfills.js',
1137-
'dist/js/bundle/angular2.umd.js',
1138-
'dist/js/bundle/angular2_all.umd.js'
1139-
])
1135+
return gulp.src(['dist/js/bundle/angular2-polyfills.js', 'dist/js/bundle/angular2.umd.js'])
11401136
.pipe(uglify())
11411137
.pipe(rename({extname: '.min.js'}))
11421138
.pipe(gulp.dest('dist/js/bundle'));

0 commit comments

Comments
 (0)