I'm new to React.js and I want to use .jsx files for development. I have installed the react-tools and ran the command below as mentioned in the docs.
jsx --watch src/ build/
The watcher is running and noticing my changes in my .jsx files. However, it does not generate any .js files.
I'm receiving the following output:
[]
app.jsx changed; rebuilding...
[]
app.jsx___jb_bak___ changed; rebuilding...
app.jsx___jb_bak___ changed; rebuilding...
app.jsx changed; rebuilding...
The command line was ran under admin privileges and it was able to create the build directory by itself. How can I fix this so that it generates the js files or even troubleshoot this issue?