diff --git a/gulp/server.js b/gulp/server.js index 1f00c599..7ee20381 100644 --- a/gulp/server.js +++ b/gulp/server.js @@ -38,7 +38,7 @@ function browserSyncInit(baseDir, files, browser) { gulp.task('serve', ['watch'], function () { browserSyncInit([ '.tmp', - 'app' + 'lemur/static/app' ], [ '.tmp/*.html', '.tmp/styles/**/*.css', diff --git a/gulp/watch.js b/gulp/watch.js index 9d6f894c..460a935b 100644 --- a/gulp/watch.js +++ b/gulp/watch.js @@ -3,7 +3,7 @@ var gulp = require('gulp'); -gulp.task('watch', ['dev:styles', 'dev:scripts', 'dev:inject'] ,function () { +gulp.task('watch', ['dev:styles', 'dev:scripts', 'dev:inject', 'dev:fonts'] ,function () { gulp.watch('app/styles/**/*.less', ['dev:styles']); gulp.watch('app/styles/**/*.css', ['dev:styles']); gulp.watch('app/**/*.js', ['dev:scripts']);