From 5e0c13b4a6a5c8fe6d73c90f4aed925bb9cac7ca Mon Sep 17 00:00:00 2001 From: Shiva Sankeerth Reddy <29270279+ShivaSankeerth@users.noreply.github.com> Date: Tue, 22 Jan 2019 00:17:22 +0530 Subject: [PATCH] Update index.md (#32754) * Update index.md * add space between sentence --- guide/english/miscellaneous/learn-some-gulp-basics/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/miscellaneous/learn-some-gulp-basics/index.md b/guide/english/miscellaneous/learn-some-gulp-basics/index.md index 22b9d1b810..431ed977a6 100644 --- a/guide/english/miscellaneous/learn-some-gulp-basics/index.md +++ b/guide/english/miscellaneous/learn-some-gulp-basics/index.md @@ -7,7 +7,7 @@ Gulp can do **a lot**. This is just an overview of the basics. Once you understa ## What is Gulp? -Gulp is a JavaScript build/task runner. Are you using Jade, but need HTML? Sass, but need CSS? CoffeeScript, but need JavaScript? Or maybe you just want to concatenate and/or minify what you already have? Gulp can do all of this for you easily, so you do not have to keep going back to your terminal after every little change. +Gulp is a JavaScript build/task runner. Are you using Jade, but need HTML? Sass, but need CSS? CoffeeScript, but need JavaScript? Or maybe you just want to concatenate and/or minify what you already have? Gulp can do all of this for you easily, so you do not have to keep going back to your terminal after every little change. Simply put, Gulp is a task runner built on Node.js and npm, used for automation of time-consuming and repetitive tasks involved in web development like minification, concatenation, cache busting, unit testing, linting, optimization, etc. ## Why use Gulp?