This boilerplate was built in order to aid in the process of creating static applications.
I use:
- NPM Scripts
- GulpJS
- Sass
- Browsersync
- Babel (new v2.0)
- Improving Structure Folders
- Adding babel to compile es6
- Planning better gulpfile.js
Install NodeJS and GulpJS
# Clone this repository
$ git clone git@github.com:interaminense/boilerplate.git
# install dependencies
$ npm install --save-dev
├── README.md
├── src
│ ├── css
│ │ └── app.min.css
│ ├── scss
│ │ ├── lib
│ │ │ ├── components
| | | | └── _main.scss
│ │ │ └── settings
│ │ │ ├── _colors.scss
│ │ │ ├── _typography.scss
│ │ │ └── _variables.scss
│ │ └── app.scss
│ ├── js
│ │ └── app.min.js
| ├── es6
│ │ ├── lib
│ │ └── app.js
│ ├── index.html
└── dist
├── css
│ └── app.min.css
├── js
│ └── app.min.js
└── index.html
gulp: start the projectgulp build: build the folder dist
