#Gulp starter
First of all, clone this repository on a empty project folder
git clone https://github.com/TheoKleman/gulp.git
You need a recent installation of nodejs.
Then, you can install Node dependencies needed for this starter
cd {path/to/this_repository}
npm install
This project also works with gulp, follow this instruction to install it
sudo npm install --global gulp-cli
We highly recommand to use this file tree
your_awesome_project
│ README.md
│ .gitignore
│ ...
│
└─── {this repository}
│
│
│
│
├───src
│ │
│ ├─── scripts
│ │ ... where you write .es6 files
│ │
│ └─── styles
│ ... where you write .scss files
│
└─── build
│ index.html (file you must write)
│ ...
│
├─── js
│ ... where your .es6 files are compiled
│
└─── css
... where your .scss files are compiled
But you also can set your own configurations in config/general.config.js
Simply run gulp
on your terminal