Skip to content

Commit

Permalink
Make it work again.
Browse files Browse the repository at this point in the history
  • Loading branch information
NoUseFreak committed Mar 28, 2015
1 parent d4f3a80 commit 8488c10
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ gulp.task('scripts', ['scripts:vendor', 'scripts:app']);
gulp.task('scripts:vendor', function() {
gulp.src(paths.scripts.vendor)
.pipe(concat('vendor.js'))
.pipe(stripDebug())
.pipe(uglify())
//.pipe(stripDebug())
//.pipe(uglify())
.pipe(rename('vendor.min.js'))
.pipe(gulp.dest(paths.build))
.pipe(filesize());
Expand All @@ -86,7 +86,7 @@ gulp.task('scripts:app', function() {
gulp.src(paths.scripts.app)
.pipe(concat('app.js'))
//.pipe(stripDebug())
.pipe(uglify())
//.pipe(uglify())
.on('error', errorHandler)
.pipe(rename('app.min.js'))
.pipe(gulp.dest(paths.build))
Expand All @@ -101,7 +101,6 @@ gulp.task('styles:app', function() {
.pipe(less())
.on('error', errorHandler)
.pipe(concat('app.css'))
.pipe(cmq({log: true}))
.pipe(autoprefix('last 2 versions'))
.pipe(minifyCSS({
keepSpecialComments: 0
Expand Down

0 comments on commit 8488c10

Please sign in to comment.