Created
May 10, 2014 14:57
-
-
Save kyranjamie/196c015d2f228f423b4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gulp.task('scripts:dev', ['templates'], function() { | |
return gulp.src(paths.scripts) | |
.pipe(plumber()) | |
.pipe(concat('app.js')) | |
.pipe(ngmin()) | |
.on('error', notify.onError()) | |
.pipe(gulp.dest('public/dist/js')) | |
.pipe(refresh(lrserver)); | |
}); | |
gulp.task('scripts:prod', ['templates'], function() { | |
return gulp.src(paths.scripts) | |
.pipe(concat('app.min.js')) | |
.pipe(ngmin()) | |
.pipe(uglify()) | |
.pipe(gulp.dest('public/dist/js')) | |
.pipe(refresh(lrserver)); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment