Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Fix nodemon node_modules ignore. (#569)
Browse files Browse the repository at this point in the history
Fix nodemon node_modules ignore.
  • Loading branch information
remybach authored Jun 12, 2019
2 parents 4b5ff69 + 9704c2a commit 56f89c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function runLocal (opts) {

if(opts.nodemon) {
args.push('--ignore', 'public/');
args.push('--ignore', 'node-modules/');
args.push('--ignore', 'node_modules/');
return ['nodemon', args, { cwd: process.cwd(), env: env }];
} else {
return ['node', args, { cwd: process.cwd(), env: env }];
Expand Down

0 comments on commit 56f89c1

Please sign in to comment.