我希望在发生更改时使用 watchman 来重建我的目录。我正在使用 watchman--make 命令来初始化命令:
$ babel ./src/ -d ./lib/
目前我正在使用:
$ watchman-make -p "./src/**" -r 'babel ./src/ -d ./lib/'
观察 src 中的任何文件更改并运行构建命令。
守望者正在输出:
# Relative to /home/marc/workspace/abnb
# Changes to files matching ./src/** will execute `babel ./src/ -d ./lib/`
# waiting for changes
但是当我更改我的直接 src/ 中的文件时,似乎什么也没发生