I'm using Gulp and Bower to get JQuery into my project. However the jquery.min.cs file has a SourceMappingURL at the end of the precompiled file and I would like to remove this.
Currently my Gulp just copy the original file to the destination like that:
gulp.task('jquery', function () {
gulp.src(paths.jquerySrc)
.pipe(gulp.dest(paths.jqueryDest));
});
I found a lot of ways to add source mappings but none to remove. I would like to not recompile all the jquery just for that.