Proposal fix for missing js rev
This commit is contained in:
parent
6fe0a7d614
commit
75ed81b276
|
@ -140,7 +140,7 @@ gulp.task( 'browser-sync', function() {
|
||||||
// Run:
|
// Run:
|
||||||
// gulp watch-bs
|
// gulp watch-bs
|
||||||
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
|
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
|
||||||
gulp.task( 'watch-bs', ['browser-sync', 'watch', 'scripts'], function() {
|
gulp.task( 'watch-bs', ['browser-sync', 'watch', 'scripts', 'rev'], function() {
|
||||||
} );
|
} );
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
|
@ -161,15 +161,14 @@ gulp.task( 'scripts', function() {
|
||||||
paths.dev + '/js/custom-javascript.js'
|
paths.dev + '/js/custom-javascript.js'
|
||||||
];
|
];
|
||||||
gulp.src( scripts )
|
gulp.src( scripts )
|
||||||
.pipe( concat( 'theme.min.js' ) )
|
.pipe( concat( 'child-theme.min.js' ) )
|
||||||
.pipe( uglify() )
|
.pipe( uglify() )
|
||||||
.pipe( gulp.dest( paths.js ) );
|
.pipe( gulp.dest( paths.js ) )
|
||||||
|
rev();
|
||||||
|
|
||||||
gulp.src( scripts )
|
gulp.src( scripts )
|
||||||
.pipe( concat( 'theme.js' ) )
|
.pipe( concat( 'theme.js' ) )
|
||||||
.pipe( gulp.dest( paths.js ) );
|
.pipe( gulp.dest( paths.js ) );
|
||||||
|
|
||||||
rev();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Deleting any file inside the /src folder
|
// Deleting any file inside the /src folder
|
||||||
|
|
Reference in New Issue