remove non-existent files and directories from nodemon config (#11451)

This commit is contained in:
Alys
2019-10-20 19:03:54 +10:00
committed by Matteo Pagliazzi
parent 0133184a83
commit 3a0aa95788
2 changed files with 0 additions and 16 deletions

View File

@@ -1,20 +1,9 @@
node_modules/**
.bower-cache/**
.bower-tmp/**
.bower-registry/**
website/client-old/**
website/client/**
website/client/store/**
website/views/**
website/build/**
dist/**
test/**
.git/**
Gruntfile.js
CHANGELOG.md
.idea*
*.log
newrelic_agent.log
*.swp
*.swx
website/raw_sprites/**

View File

@@ -6,11 +6,6 @@ import pkg from '../package.json';
gulp.task('nodemon', done => {
nodemon({
script: pkg.main,
ignore: [
'website/client-old/*',
'website/views/*',
'common/dist/script/content/*',
],
});
done();
});