Front-end Boilerplate
-Using Sass and Gulp
- -- Here's a quick set-up guide: -
- --
-
- Clone Git repo -
- Install by running "npm install" on the commmand line -
- Run "gulp" on the command line. -
diff --git a/README.md b/README.md index 5e78421..2c13d73 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,14 @@ -# Front-end Boilerplate using Sass and Gulp 4 - -Using a set of boilerplate files when you're starting a website project can be a huge time-saver. Instead of having to start from scratch or copy and paste from previous projects, you can get up and running in just a minute or two. - -I wanted to share my own boilerplate that I use for simple front-end websites that use HTML, SCSS, and JavaScript. And I'm using Gulp 4 to compile, prefix, and minify my files. - -I also wrote a rather detailed walkthrough on how to get up and running with Gulp 4, as well as migration tips from Gulp 3. - -You can read that on my blog [here](https://coder-coder.com/gulp-4-walk-through). - -## Quickstart guide +# Quickstart guide * Clone or download this Git repo onto your computer. * Install [Node.js](https://nodejs.org/en/) if you don't have it yet. * Run `npm install` * Run `gulp` to run the default Gulp task -In this proejct, Gulp is configured to run the following functions: +In this project, Gulp is configured to run the following functions: * Compile the SCSS files to CSS * Autoprefix and minify the CSS file * Concatenate the JS files * Uglify the JS files * Move final CSS and JS files to the `/dist` folder - diff --git a/index.html b/index.html index b387fd3..2f947e8 100644 --- a/index.html +++ b/index.html @@ -1,52 +1,12 @@ - -
- - - - - - - - - -- Here's a quick set-up guide: -
- -