gulp-project-template
v0.0.4
Published
A gulp web app template
Downloads
22
Readme
gulp.js project template
This is a template or a initial setup for a simple gulp project. It aims to provide some common tasks to a web app development within a organized structure.
Structure
A sample project strucutre could be:
|-- app
| |-- bower_modules
| |-- assets
| | |-- styles
| | | |-- style_one.scss
| | | |-- style_two.scss
| | |-- scripts
| | | |-- script_one.coffee
| | | |-- script_two.coffee
| | |-- images
| |-- index.html
|-- dist
| |-- assets
| | |-- styles
| | | |-- main.min.css
| | |-- scripts
| | | |-- main.min.js
| | |-- images
| |-- index.html
|-- node_modules
|-- testBuild tasks
The tasks this template aims are:
- [x] Compiles scss files
- [x] Minify styles
- [x] Compiles CoffeeScript files
- [x] Runs jsHint against js files
- [ ] Runs mocha tests
- [x] Generates an optimized build
- [x] Starts a server
- [x] Watches for changes
