diff --git a/tasks/run.js b/tasks/run.js index 18d8718e..bd76fcf6 100644 --- a/tasks/run.js +++ b/tasks/run.js @@ -79,6 +79,7 @@ function runLocal (opts) { if(opts.nodemon) { args.push('--ignore', 'public/'); + args.push('--ignore', 'node-modules/'); return ['nodemon', args, { cwd: process.cwd(), env: env }]; } else { return ['node', args, { cwd: process.cwd(), env: env }];