This commit is contained in:
Blade Barringer
2015-10-20 12:39:04 -05:00
parent 703caeadff
commit 23398b1a37

View File

@@ -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/*',
]
});
});