nodemon 过滤样式文件更改

nodemon filters styl file changes

我有 nodemon wathcing .styl 文件使用 nodemon.json 中的以下设置,没有任何 ignore 规则:

"watch": [
  "src/css/*.styl",
  "src/css/includes/*.styl"
]

任何更改都应该触发我在 package.json 中定义的构建脚本。

但是在编辑 .styl 文件后,nodemon 似乎过滤了更改:

Express app running on 3001
[nodemon] files triggering change check: src/css/main.styl
[nodemon] matched rule: **/src/css/*.styl
[nodemon] changes after filters (before/after): 1/0

有什么地方出了问题吗?

nodemon.json中添加观看扩展:

"ext": "js json css styl jade"