我有一个watch.json文件,但它不会忽略文件夹

问题描述 投票:0回答:1
{
  "install": {
    "include": [
      "^package\\.json$",
      "^\\.env$"
    ]
  },
  "restart": {
    "exclude": [
      "^public/",
      "^dist/"
    ],
    "include": [
      "\\.js$",
      "\\.json"
    ]
  },
  "throttle": 999999999999
}

当前当前忽略index.js。但是我也需要它也忽略commands /文件夹,因此该文件夹及其所有命令都在其中。这样我们的漫游器就不会一直刷新/重新启动。

json discord.js watch
1个回答
0
投票

您需要将^commands/添加到exclude下的restart列表中。

© www.soinside.com 2019 - 2024. All rights reserved.