https://github.com/codenameyau/soda-bar
Collection of gulpfiles
https://github.com/codenameyau/soda-bar
Last synced: 12 months ago
JSON representation
Collection of gulpfiles
- Host: GitHub
- URL: https://github.com/codenameyau/soda-bar
- Owner: codenameyau
- License: mit
- Created: 2014-12-12T05:14:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T13:54:54.000Z (about 10 years ago)
- Last Synced: 2025-03-24T15:12:04.173Z (over 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
soda-bar
========
Collection of gulpfiles
Use the following technique to reduce `gulp watch` CPU consumption from 10% to 1%.
```javascript
var WATCH_OPT = {debounceDelay: 400, interval: 400};
gulp.task('watch', function() {
gulp.watch(src_paths.sass, WATCH_OPT, ['sass']);
gulp.watch(src_paths.coffee, WATCH_OPT, ['coffee']);
});
```