You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.pipe(gulp.dest('build/assets')) // Copy original assets to build dir
94
94
.pipe(rev())
95
-
.pipe(dest('build/assets')) // Write rev'd assets to build dir
95
+
.pipe(gulp.dest('build/assets')) // Write rev'd assets to build dir
96
96
.pipe(rev.manifest())
97
-
.pipe(dest('build/assets')) // Write manifest to build dir
97
+
.pipe(gulp.dest('build/assets')) // Write manifest to build dir
98
98
);
99
99
```
100
100
@@ -110,21 +110,21 @@ An asset manifest, mapping the original paths to the revisioned paths, will be w
110
110
By default, `rev-manifest.json` will be replaced as a whole. To merge with an existing manifest, pass `merge: true` and the output destination (as `base`) to `rev.manifest()`:
111
111
112
112
```js
113
-
import{src, dest}from'gulp';
113
+
importgulpfrom'gulp';
114
114
importrevfrom'gulp-rev';
115
115
116
116
exportdefault= () => (
117
117
// By default, Gulp would pick `assets/css` as the base,
0 commit comments