$ mkdir sass_gulp_workshop
cd
into the new directory- Initialize NPM:
$ npm init --yes
- Install gulp and gulp-sass packages:
$ npm install -D gulp gulp-sass browser-sync
- Update
package.json
'sscripts
section with this key-value pair:"scripts": { "dev": "gulp" }
- Recreate this file structure in this directory:
public
(directory)css
(directory)index.html
(file)