我在运行 goapp serve 时收到了这个警告。



原因可能是因为 npm_modules 文件夹。我尝试在 app.yaml 中使用 skip_files 解决它,但警告仍然存在。

skip_files:
- ^(.*/)?.*/node_modules/.*$
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$

我应该怎么办?

最佳答案

更新了 GAE 的 goapp serve 观察器的 current version ( _IGNORED_DIRSreplaced )。

.../appengine/tools/devappserver2/watcher_common.py 中,更改

def skip_ignored_dirs(dirs):
  """Skip directories that should not be watched."""

  _remove_pred(dirs, lambda d: d.startswith(_IGNORED_PREFIX))


_IGNORED_DIRS = ('node_modules',)

def skip_ignored_dirs(dirs):
  """Skip directories that should not be watched."""

  _remove_pred(dirs, lambda d: d.startswith(_IGNORED_PREFIX) or d in _IGNORED_DIRS)

10-08 02:47