I am new to Coffeescript and I wonder where I should put them.
Eg. I have a folder for the application:
app/app.js tests/unit/all.js etc
When I use coffee on node.js to watch my files in the root folder, it will generate js files in the folder that I specify, for example. JS.
So, if the folder you are browsing looks like this:
app/app.coffee tests/unit/all.coffee etc
JS files will be generated for:
js/app.js js/all.js etc
As you can see, I am losing the hierarchy of js folders.
How should you keep the original folder hierarchy?
thanks
ajsie source share