based on
Thanks to Jonathan Reed for the initial boilerplate.
Template for quickly building websites using HTML5, Sass, and ES6. The goal is to serve highly optimized, mobile-first code that skips the boring stuff and gets straight to the fun. View template here
I've added JavaScript file concatenation after wrapping src JavaScript files in IIFE's using gulp-iife and gulp-concat, resulting in single uglified file all.js. - KR
html5-sass-boilerplate
├──readme.md
└───src
├──img
├──js
| └──module.core.js
| └──module.messages.js
| └──onload.js
├──static
| └──index.html
├──styles
| └──_colors.scss
| └──_media-queries.scss
| └──main.scss
| └──normalize.css
└──svg (working sample pending)
html5-sass-boilerplate
└───dist
├──index.html
├──js
| └──all.js
├──styles
| └──main.css
| └──normalize.css
└──svg (working sample pending)
npm install
To build and serve files, use:
gulp
To deploy to github, use:
gulp deploy