From 4ee6fd24f15c524e15dbefee89ac281eab3adae5 Mon Sep 17 00:00:00 2001 From: harunbleech <52159349+harunbleech@users.noreply.github.com> Date: Mon, 31 Aug 2020 14:30:43 +0200 Subject: [PATCH] build(gulp): change the src for revUpdateReferences (#300) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 404190840..88eb96609 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -91,7 +91,7 @@ function revUpdateReferences (config) { const rewrite = require('gulp-rev-rewrite') var manifest = gulp.src(path.join(config.dest, 'rev-manifest.json')) - return gulp.src(path.join(config.dest, '/**/**.{css,js}')) + return gulp.src(config.rev.srcRevved) .pipe(rewrite({ manifest: manifest })) .pipe(gulp.dest(config.dest)) })