|
|
|
|
|
by astrodust
3434 days ago
|
|
Nothing exotic but even a routine web application can have 150-250 lines of Gulp directives. Zero of this is provided for you. Each chunk is fairly small, but they add up. You want linting, auto-restart on changes, tests, your various asset chains to compile things correctly, etc. |
|
I also threw my standard gulpfile into a git repo, so if I need it, it's there.
Lastly, I built a yeoman generator. Now, not only is my gulpfile standardized, but I have the rest of my skeleton application built in a matter of minutes. All my favorite libraries/npm modules, custom scss files, basic routing to the standard pages of a simple site, are all built out for me to my preferences while I make a cup of coffee. You can even provide yourself command line flags to determine whether or not to include tests, which preprocessors for html or css you prefer, etc. Really a worthwhile investment.
Write once, utilize many times.