Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.13 KB

README.md

File metadata and controls

34 lines (27 loc) · 1.13 KB

gulp-all-the-things

How to automate all the things with Gulp

How to create a task automation workflow using Gulp?

This tutorial will demo how to set up a bare bones Gulp configuration for automating the time consuming tasks you need to run on a regular basis.

It consists of three basic files which will be the basis for showing the power of Gulp, an index.html, a style.css and a script.js. Have in mind these files are only made for demonstational purposes.

The core of Gulp lies in the gulpfile.js, it is the entry point for the task automation itself. All the tasks we will be running in this tutorial will be written in the gulpfile.js .

To clone this repo to your local machine run:

git clone https://github.com/adnanrahic/gulp-all-the-things.git

After you've cloned the repo, don't forget to run:

npm install

And of course install Gulp globally on your machine:

npm install -g gulp

The full tutorial can be found at: https://hackernoon.com/how-to-automate-all-the-things-with-gulp-b21a3fc96885