https://github.com/kinduff/gulp-static-site-template
Template project to create static pages with generators included
https://github.com/kinduff/gulp-static-site-template
Last synced: 10 days ago
JSON representation
Template project to create static pages with generators included
- Host: GitHub
- URL: https://github.com/kinduff/gulp-static-site-template
- Owner: kinduff
- Created: 2016-05-07T18:12:24.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-07T18:12:34.000Z (about 10 years ago)
- Last Synced: 2025-02-22T21:43:41.291Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gulp Static Site Template
Simple application template that helps you out to kickstart a static application that includes Gulp tasks to compile assets (SASS, Jade, JS, Images) and deploy to Github Pages.
This application includes the following gulp tasks in order to automate
- **js**: Concats and minifies JS files to `app/dist/app.js`.
- **css**: Uses SCSS to process `app/src/style/app.scss` to `app/dist/style/app.css`.
- **clean_images**: Cleans `app/dist/images` folder.
- **images**: Copies images from `app/src/images/*/**` to `app/dist/images`.
- **jade**: Uses Jade to process `app/src/*.jade` to `app/dist`.
- **deploy**: Uses `gulp-gh-pages` npm library to deploy `dist` content to Github pages (it builds first!)
- **watch**: Runs corresponding task for supported action.
- **run**: Uses `serve` npm library to start a server with static content.