Nodemon没有使用--ignore选项

时间:2017-12-13 13:21:50

标签: node.js nodemon

我在Expressjs项目中使用Nodemon。我的package.json中有以下内容:

"start": "nodemon server.js --ignore 'src/**'"

我已尝试过忽略glob的几种变体,但每次,当'src /'中的文件发生变化时,它仍会重新启动。

我需要做些什么才能让Nodemon忽略src目录?

感谢。

2 个答案:

答案 0 :(得分:2)

您可以尝试使用以下内容添加配置nodemon.json:

resolver

" start":" nodemon server.js --config nodemon.json"

参考:https://github.com/remy/nodemon

答案 1 :(得分:2)

也许我的朋友....只是不使用''....例如:

nodemon index.js --ignore src/*

对我有用的

重复,不要使用”或“”