- Clone this repo.
- Edit
outline.json
with your project stuff. - In the project root folder, execute
gulp
. If you wish, you can executegulp serve
instead to get an instant livereload server. - Happy coding!
- gulp style: Generates your project main style file by concatenating and applying
less
to all files defined in your outline. - gulp script: Generates your project main script file by concatenating all files defined in your outline.
- gulp index: Generates index.html files, loading your project name and dependencies from
bower.json
. - gulp build [-p]: Setups the whole project structure by executing
style
,script
andindex
, using data from youroutline.json
. Use with -p to minify and uglify all assets, leaving them in a production-ready state. - gulp watch: Watches for changes on files, and executes the appropriate task.
- gulp (default task): Executes gulp build followed by gulp watch.
- gulp serve: Starts a live reload server, which will watch for changes on project files, rebuild your project and reload all connected browsers.