@@ -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 */
224224gulp . 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