@@ -97,7 +97,7 @@ const gulp = require('gulp');
9797const rev = require (' gulp-rev' );
9898
9999gulp .task (' default' , () =>
100- // by default, gulp would pick `assets/css` as the base,
100+ // By default, Gulp would pick `assets/css` as the base,
101101 // so we need to set it explicitly:
102102 gulp .src ([' assets/css/*.css' , ' assets/js/*.js' ], {base: ' assets' })
103103 .pipe (gulp .dest (' build/assets' )) // copy original assets to build dir
@@ -124,15 +124,15 @@ const gulp = require('gulp');
124124const rev = require (' gulp-rev' );
125125
126126gulp .task (' default' , () =>
127- // by default, gulp would pick `assets/css` as the base,
127+ // By default, Gulp would pick `assets/css` as the base,
128128 // so we need to set it explicitly:
129129 gulp .src ([' assets/css/*.css' , ' assets/js/*.js' ], {base: ' assets' })
130130 .pipe (gulp .dest (' build/assets' ))
131131 .pipe (rev ())
132132 .pipe (gulp .dest (' build/assets' ))
133133 .pipe (rev .manifest ({
134134 base: ' build/assets' ,
135- merge: true // merge with the existing manifest if one exists
135+ merge: true // Merge with the existing manifest if one exists
136136 }))
137137 .pipe (gulp .dest (' build/assets' ))
138138);
@@ -158,7 +158,7 @@ gulp.task('default', () =>
158158 .pipe (rev ())
159159 .pipe (sourcemaps .write (' .' ))
160160 .pipe (gulp .dest (' dist' ))
161- )
161+ );
162162```
163163
164164
0 commit comments