Browse Source

Minor fixes

master
Igor Zhukov 10 years ago
parent
commit
375e3fcb25
  1. 2
      gulpfile.js
  2. 2
      webogram.sublime-project

2
gulpfile.js

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

2
webogram.sublime-project vendored

@ -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"]
} }
] ]

Loading…
Cancel
Save