mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -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
|
@ -3,6 +3,7 @@ var handlebars = require('gulp-handlebars');
|
|||
var declare = require('gulp-declare');
|
||||
var concat = require('gulp-concat');
|
||||
var wrap = require("gulp-wrap");
|
||||
var livereload = require('gulp-livereload');
|
||||
var path = require('path');
|
||||
var streamqueue = require('streamqueue');
|
||||
var stripbom = require('gulp-stripbom');
|
||||
|
@ -47,6 +48,6 @@ gulp.task('handlebars', function () {
|
|||
partialStream,
|
||||
coreStream
|
||||
).pipe(concat('templates.js'))
|
||||
|
||||
.pipe(gulp.dest(paths.dest.root));
|
||||
.pipe(gulp.dest(paths.dest.root))
|
||||
.pipe(livereload());
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue