This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/gulp/watch.js

8 lines
272 B
JavaScript
Raw Normal View History

2016-05-27 22:25:38 +00:00
gulp.task('watch', function () {
plugins.refresh.listen();
2016-05-28 00:23:17 +00:00
gulp.watch(config.sass.source + config.sass.search, ['styles']);
gulp.watch(config.sass.source + config.scss.search, ['styles']);
gulp.watch(config.js.source + config.js.search, ['scripts']);
2016-05-27 22:25:38 +00:00
});