gulp-cachebust icon indicating copy to clipboard operation
gulp-cachebust copied to clipboard

Using with gulp-sourcemaps

Open subinvarghesein opened this issue 9 years ago • 1 comments

Following is my relevant code:

gulp.task('scripts', ['clean'], function() {
    return gulp.
        src('src/**/*.js').
        pipe(sourcemaps.init()).
            pipe(uglify()).
            pipe(concat('script.js')).
        pipe(sourcemaps.write('.')).
        pipe(cachebust.resources()).
        pipe(gulp.dest("/dist"));
});

Now, the files generated are: script.12345678.js and script.js.87654321.map

In short, cachebust token is getting added to the sourcemap file but inside script.js, sourcemap url is script.js.map.

So how should this be handled?

subinvarghesein avatar Apr 27 '15 11:04 subinvarghesein

Please try to put pipe(cachebust.resources()). before pipe(sourcemaps.write('.')).

Deadarius avatar Aug 03 '15 03:08 Deadarius