6

我有一个想要观看的图像目录。该目录可以有许多不同的文件类型。我知道您可以为 nodemon 指定要监视的文件类型列表,但是我如何告诉 nodemon 监视目录中的所有文件?我的命令现在看起来像这样:

"watch-images": "nodemon --ignore build/ -e jpg,png --watch images --exec 'cp -a images/ build/images/'"

我可以用什么来替换jpg,png?

4

1 回答 1

9

用于nodemon --ext '*'监视所有文件扩展名。它会输出:

[nodemon] watching extensions: (all)

此功能请求中提到:

https://github.com/remy/nodemon/issues/915#issuecomment-445905946

于 2017-06-24T18:38:52.197 回答