taylorbryant / jekyll-starter-tailwind

Jekyll starter styled with Tailwind CSS

Home Page:https://jekyll-starter-tailwind.taylorbryant.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add break or timeout between css and serve tasks in Gulp

taylorbryant opened this issue · comments

css and serve run concurrently. This is expected behavior, because Gulp tasks run with maximum concurrency.

Because of this, there are redundant calls to css in the current Gulpfile. While the initial call to the css task is running, the serve task is started. Once css makes changes to the CSS files serve is watching, css is ran several more times unnecessarily.

8cfb404 fixes this issue.