mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 16:13:58 -07:00
Added support for live reload
This commit is contained in:
parent
5af12b67be
commit
760469fc5f
6 changed files with 42 additions and 51 deletions
|
@ -1,6 +1,7 @@
|
|||
var gulp = require('gulp');
|
||||
var less = require('gulp-less');
|
||||
var print = require('gulp-print');
|
||||
var livereload = require('gulp-livereload');
|
||||
|
||||
var paths = require('./paths');
|
||||
var errorHandler = require('./errorHandler');
|
||||
|
@ -30,5 +31,6 @@ gulp.task('less', function () {
|
|||
strictImports: true
|
||||
}))
|
||||
.on('error', errorHandler.onError)
|
||||
.pipe(gulp.dest(paths.dest.content));
|
||||
.pipe(gulp.dest(paths.dest.content))
|
||||
.pipe(livereload());
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue