5

I'm using vim has an editor. JSX compiles the swap/temporary files. How can I avoid that ?

Command line :

jsx --extension js --watch src/ build/

What I see in stdout :

.helloworld.js.swp changed; rebuilding...
["helloworld"]
["helloworld"]
helloworld.js~ changed; rebuilding...
helloworld.js~ changed; rebuilding...
["helloworld"]
["helloworld"]

Thanks. :)

4

1 回答 1

2

VIM 解决方案

您可以将交换文件夹设置为不同的文件夹。

 set directory^=$HOME/.vim/swap// 

咕噜解决方案

您可以使用众多插件之一来观看和重建您的 jsx 文件。这些插件允许您设置在构建过程中使用哪些文件。例如:https ://www.npmjs.com/package/grunt-react

于 2015-05-28T22:09:12.807 回答