Created
December 12, 2014 15:06
-
-
Save xcarpentier/b5c01e1bb9ec82c19741 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('js', ['jshint'], function () { | |
var source = pkg.paths.js; | |
return gulp.src(source) | |
.pipe(sourcemaps.init()) | |
.pipe(concat('all.min.js', {newLine: ';'})) | |
.pipe(ngAnnotate({ | |
add: true | |
})) | |
.pipe(bytediff.start()) | |
.pipe(uglify({mangle: true})) | |
.pipe(bytediff.stop()) | |
.pipe(sourcemaps.write('./')) | |
.pipe(gulp.dest(pkg.paths.dev)); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment