Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sudorook/capsule.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsudorook <daemon@nullcodon.com>2021-04-03 00:33:05 +0300
committersudorook <daemon@nullcodon.com>2021-04-03 00:33:05 +0300
commitddc91e39039969578928f0cfd4381526e08d313b (patch)
treef7ca5e8f23fc73c4de991702fd93d40bb144fef6
parent84bc5f668dddb582e1b6daa75b2848c1a7e89f00 (diff)
minor capitalization in gulpfiles
-rw-r--r--gulpfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js
index e61d294..183f3b5 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -54,9 +54,9 @@ const dest = {
/*
* Define gulp tasks:
- * - default: rebuild css and fonts
+ * - default: rebuild CSS and fonts
* - fonts: rebuild fonts
- * - sass: rebuild css from sass source files
+ * - sass: rebuild CSS from Sass source files
*/
// Compile css from sass files
@@ -80,5 +80,5 @@ gulp.task('fonts', function() {
});
});
-// Rebuild css and fonts
+// Rebuild CSS and fonts
gulp.task('default', gulp.series(gulp.parallel('sass', 'fonts')));