-
Clone project
Template site repository on GitHub: https://github.com/develop-me/gulp-template
Remember:
git clone
will make a new folder wherever you are in terminal, socd
to the right place orpwd
to check where you are. -
Initiate npm
npm init --yes
-
Install the gulp package
npm install gulp
Check
package.json
has auto-updated -
Add a .gitignore file to manage the madness that is /node_modules
touch .gitignore
code .gitignore
and add `/node_modules'save your file
use either VSCode or
git status
to see that it's worked -
Tour of the site
Open
index.html
in the browser and have a review of the site.This is a Bootstrap v4 site.
Uses Sass, compiles
scss/styles.scss
tocss/styles.css
, from many Sass filesUses some JavaScript files (see bottom of
index.html
):js/jquery-3.3.1.slim.js
js/popper.js
js/bootstrap.js
-
Add an emoji to slack to let the instructor know you have finished