Provided that you have two folders, coffeescript-root where your coffee scripts are located and javascript-root where the compiled JS files are sent, if you stick your coffee script file in coffeescript-root/a/awesome.coffee it is placed in javascript-root/awesome.js.
We should, instead, properly place things in correctly named subdirectories. So in the example above, awesome.js should have a path of javascript-root/a/awesome.js.
Provided that you have two folders,
coffeescript-root
where your coffee scripts are located andjavascript-root
where the compiled JS files are sent, if you stick your coffee script file incoffeescript-root/a/awesome.coffee
it is placed injavascript-root/awesome.js
.We should, instead, properly place things in correctly named subdirectories. So in the example above, awesome.js should have a path of
javascript-root/a/awesome.js
.