Skip to content

Commit e4332bd

Browse files
committed
Update comment to the “copyUnprocessedAssetsToProdFolder” task
1 parent a29346a commit e4332bd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,20 +217,20 @@ gulp.task(`compressThenCopyImagesToProdFolder`, function () {
217217
* Sass/CSS to the production folder, because those files are processed by other
218218
* tasks, specifically:
219219
*
220-
* — Images are compressed then copied by the compressThenCopyImagesToProdFolder task
221-
* — JavaScript is concatenated and compressed by the compileJSForProd task
222-
* — Sass/CSS is concatenated and compressed by the compileCSSForProd task
220+
* — Images are handled by the compressThenCopyImagesToProdFolder task
221+
* — JavaScript is handled by the compileJSForProd task
222+
* — Sass/CSS is handled by the compileCSSForProd task
223223
*/
224224
gulp.task(`copyUnprocessedAssetsToProdFolder`, function () {
225225
return gulp.src([
226226
`dev/*.*`, // Source all files,
227227
`dev/**`, // and all folders,
228228
`!dev/html/`, // but not the HTML folder
229229
`!dev/html/*.*`, // or any files in it
230-
`!dev/html/**`, // or any sub folders
230+
`!dev/html/**`, // or any sub folders;
231231
`!dev/img/`, // ignore images;
232232
`!dev/**/*.js`, // ignore JS;
233-
`!dev/styles/**` // ignore Sass/CSS.
233+
`!dev/styles/**` // and, ignore Sass/CSS.
234234
], {dot: true}).pipe(gulp.dest(`prod`));
235235
});
236236

0 commit comments

Comments
 (0)