Minor fixes

This commit is contained in:
Igor Zhukov 2015-03-23 00:40:15 +03:00
parent ddf4dd7c20
commit 375e3fcb25
2 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ gulp.task('watchhtml', function() {
.pipe(livereload()); .pipe(livereload());
}); });
gulp.task('watch', ['server'], function() { gulp.task('watch', ['server', 'less'], function() {
livereload.listen({ basePath: 'app' }); livereload.listen({ basePath: 'app' });
gulp.watch('app/css/*.css', ['watchcss']); gulp.watch('app/css/*.css', ['watchcss']);
gulp.watch('app/less/*.less', ['less']); gulp.watch('app/less/*.less', ['less']);

View File

@ -4,7 +4,7 @@
{ {
"follow_symlinks": true, "follow_symlinks": true,
"path": ".", "path": ".",
"folder_exclude_patterns": ["*dist", "node_modules", "releases", ".tx"], "folder_exclude_patterns": ["*dist", "node_modules", "releases", ".tx", "css"],
"file_exclude_patterns": ["*.zip", "templates.js"] "file_exclude_patterns": ["*.zip", "templates.js"]
} }
] ]