A simple kickstarter to front-end web development which uses Gulp v4.
This is my first time trying gulp so it won't be perfect. I just wanted to create a basic template to work off of with a file structure I liked.
- Live reloading
- Cache busting
- SCSS converted to css, auto prefixed and minified with sourcemaps)
- Javascript concatenated into a single file, minified with sourcemaps and supports ES6)
- Image minifying
Follow these steps in order to get the website up and running locally on your machine.
npm install
to install any dependenciesnpm start
orgulp watch
to start a live reload session
npm run build
orgulp
to build the application
gulp
orgulp build
to build the applicationgulp watch
to enable live reloadgulp clean
to delete the build foldergulp styles
to run the style tasksgulp scripts
to run the script tasksgulp images
to run the image tasksgulp favicon
to run the favicon tasks
├── app
│ ├── images
│ │
│ ├── js
│ │ ├── main.js
│ │ │
│ │ └── vendors
│ │
│ └── scss
│ ├── abstracts
│ │
│ ├── base
│ │
│ ├── pages
│ │
│ └── main.scss
│
└── build
├── images
│
├── js
│ ├── app.min.js
│ │
│ └── vendors.min.js
│
└── css
└── styles.min.css
- You can use any file structure for your javascript and scss files. The one provided is an example.