@@ -97,7 +97,7 @@ const gulp = require('gulp');
97
97
const rev = require (' gulp-rev' );
98
98
99
99
gulp .task (' default' , () =>
100
- // by default, gulp would pick `assets/css` as the base,
100
+ // By default, Gulp would pick `assets/css` as the base,
101
101
// so we need to set it explicitly:
102
102
gulp .src ([' assets/css/*.css' , ' assets/js/*.js' ], {base: ' assets' })
103
103
.pipe (gulp .dest (' build/assets' )) // copy original assets to build dir
@@ -124,15 +124,15 @@ const gulp = require('gulp');
124
124
const rev = require (' gulp-rev' );
125
125
126
126
gulp .task (' default' , () =>
127
- // by default, gulp would pick `assets/css` as the base,
127
+ // By default, Gulp would pick `assets/css` as the base,
128
128
// so we need to set it explicitly:
129
129
gulp .src ([' assets/css/*.css' , ' assets/js/*.js' ], {base: ' assets' })
130
130
.pipe (gulp .dest (' build/assets' ))
131
131
.pipe (rev ())
132
132
.pipe (gulp .dest (' build/assets' ))
133
133
.pipe (rev .manifest ({
134
134
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
136
136
}))
137
137
.pipe (gulp .dest (' build/assets' ))
138
138
);
@@ -158,7 +158,7 @@ gulp.task('default', () =>
158
158
.pipe (rev ())
159
159
.pipe (sourcemaps .write (' .' ))
160
160
.pipe (gulp .dest (' dist' ))
161
- )
161
+ );
162
162
```
163
163
164
164
0 commit comments