mirror of
https://github.com/opensupports/opensupports.git
synced 2025-04-08 18:35:06 +02:00
13 lines
405 B
JavaScript
13 lines
405 B
JavaScript
'use strict';
|
|
|
|
var gulp = require('gulp');
|
|
var config = require('../config');
|
|
|
|
gulp.task('watch', ['browserSync', 'server'], function() {
|
|
|
|
// Scripts are automatically watched by Watchify inside Browserify task
|
|
gulp.watch(config.styles.src, ['sass']);
|
|
gulp.watch(config.images.src, ['imagemin']);
|
|
gulp.watch(config.sourceDir + 'index.html', ['copyIndex']);
|
|
|
|
}); |