Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.
https://github.com/adnanrahic/gulp-all-the-things

gulp gulpfile task-automation task-management task-runner tutorial

Last synced: 17 days ago
JSON representation

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.

Awesome Lists containing this project

README

        

# gulp-all-the-things
![How to automate all the things with Gulp](https://cdn-images-1.medium.com/max/2000/1*HPW7aLlD_6UXm8eb0E3hxg.jpeg "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