所以,我安装了jsx工具: https://facebook.github.io/react/docs/tooling-integration.html
npm install -g react-tools
文档未提供有关转换单个文件的信息。例如,它建议使用该工具的唯一方法是:
jsx --watch src/ build/
这会将所有文件从src /转换为build /.
但是,我只想转换单个文件。是否可以使用jsx
工具?
答案 0 :(得分:4)
如果要将单个jsx文件编译为js,只需使用:
jsx myfile.jsx > myfile.js
您可以根据需要输出到构建目录
jsx myfile.jsx > build/myfile.js