使用ember CLI时,我得到以下信息:
version: 0.1.5Could not find watchman, falling back to NodeWatcher for file system events
我并不在乎它是否使用watchman或NodeWatcher ...-但我不喜欢此消息-我想使用ember想要的功能。我用自制软件安装了守望者...但是仍然显示此消息。有任何想法吗?

我使用的是watchman的3.0.0版本-以及使用 Ember 的0.1.5版本。

当我watchman watch ~/sites/mySite
我明白了dyld: Library not loaded: /usr/local/lib/libpcre.1.dylibReferenced from: /usr/local/bin/watchmanReason: image not foundTrace/BPT trap: 5
这是ol-“将事物放到非常规地点”的问题吗?

最佳答案

您的watchman没有正确安装。该错误消息表明您缺少libpcre;尝试运行brew install pcre,然后会发生什么?

从Ember CLI 0.1.7开始,存在no longer a message when a valid version of watchman is found

10-04 18:16