Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yochannah/gulpstarter
Handy starter project with my preferred gulp plugins, live reload, etc.
https://github.com/yochannah/gulpstarter
Last synced: about 2 months ago
JSON representation
Handy starter project with my preferred gulp plugins, live reload, etc.
- Host: GitHub
- URL: https://github.com/yochannah/gulpstarter
- Owner: yochannah
- License: other
- Created: 2015-08-13T14:14:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-13T14:14:25.000Z (over 9 years ago)
- Last Synced: 2024-10-03T19:29:31.928Z (3 months ago)
- Language: CSS
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
Starter recipe for building with:* gulp
* browserify / watchify
* less
* html/text templates using gulp-stringifyAnd live-reloading pages served via browsersync.
### Running the project
If you want to modify the script and let Browsersync live-reload your changes, run:
$ gulp dev
If you just want a one-off build, gulp's default task will do it:
$ gulp
Both tasks will compile your less (make sure to prefix partials with `_`, e.g. `_button.less`) and bundle up your js, then move it to the dist folder.
#### Testing
Run `$ mocha` (to run the suite once) or `$ mocha --watch` (to re-test when you make changes).