From 23398b1a37e777aeab724acfd5cb6273bcade91e Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Tue, 20 Oct 2015 12:39:04 -0500 Subject: [PATCH] Closes #6071 --- tasks/gulp-start.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tasks/gulp-start.js b/tasks/gulp-start.js index 5c33ae9293..7cb842af00 100644 --- a/tasks/gulp-start.js +++ b/tasks/gulp-start.js @@ -8,6 +8,10 @@ gulp.task('run:dev', ['nodemon', 'build:dev:watch']); gulp.task('nodemon', () => { nodemon({ script: pkg.main, - ignore: ['website/public/*', 'website/views/*'] + ignore: [ + 'website/public/*', + 'website/views/*', + 'common/dist/script/content/*', + ] }); });