Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的src目录中有一些 JSX 文件。我使用 babel cli 编译它们并使用 nodemon 来监视这些文件的变化。
src
nodemon --watch src --exec "npx babel src -d bin"
然而,在每次重新启动时,src 中的所有文件都会被编译,即使只有一个文件被更改。有没有办法获取触发 nodemon 重新启动的文件的名称,以便我只能编译该文件?