Skip to content

Commit

Permalink
Merge pull request #207 from m1x0n/enable-uglify
Browse files Browse the repository at this point in the history
Hot fix: enabled uglify for gulp
  • Loading branch information
m1x0n committed Oct 2, 2015
2 parents e69c554 + 16bfd4b commit a799f3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ gulp.task('js-templates', function () {
gulp.task('js-concat-main', function () {
return gulp.src(concatSettings['main'])
.pipe(concat('main.js'))
//.pipe(uglify())
.pipe(uglify())
.pipe(gulp.dest(jsPathMinFull));
});

Expand All @@ -232,7 +232,7 @@ gulp.task('js-concat-other', function () {
if (module !== 'main') {
result = gulp.src(concatSettings[module])
.pipe(concat(module + '.js'))
//.pipe(uglify())
.pipe(uglify())
.pipe(gulp.dest(jsPathMinFull));
}
}
Expand Down

0 comments on commit a799f3d

Please sign in to comment.