我的 Makefile 中有以下内容可以查看我的咖啡脚本和手写笔文件的更改。
dev:
@make watchCoffeescript
@make watchStylus
@nodemon server.coffee
watchCoffeescript:
@coffee -wcl public/ &
watchStylus:
@find public -name '*.styl' -type f | xargs stylus --watch --compress &
我遇到的问题是用于查看和编译咖啡脚本和手写笔文件的打印语句位于 nodemon 命令之后。一切仍然正常,但在我的 nodemon 命令执行之前显示这些打印语句会很好,以实现视觉目的。有没有办法让打印语句按顺序显示?我知道我可以在命令之间插入类似“@sleep 2”的东西,但希望有更好的方法。