Skip to content

Commit

Permalink
Merge pull request #70 from psbrandt/unmangle
Browse files Browse the repository at this point in the history
Unmangle
  • Loading branch information
rkorytkowski committed Apr 8, 2016
2 parents 3e40f71 + 8f0941b commit cc2e19d
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 @@ -156,11 +156,11 @@ gulp.task('lint', function() {
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
});

gulp.task('compress', ['resources', 'html'], function() {
return gulp.src('dist/**/*.js')
.pipe(uglify())
.pipe(uglify({ mangle: false }))
.pipe(gulp.dest('dist'))
});

Expand Down

0 comments on commit cc2e19d

Please sign in to comment.