Ensuring that we can use the gulp watcher and that fonts are copied over to the tmp dir

This commit is contained in:
kevgliss 2015-07-08 16:34:21 -07:00
parent f660450043
commit 6a18b01e4e
2 changed files with 2 additions and 2 deletions

View File

@ -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',

View File

@ -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']);