I would like to append new .coffee files to a single .js file.
Right now my project structure is
coffee /
--controllers /
----Ajax.coffee
--views /
----Login.coffee
--app.coffee
The file app.coffee was created first, but when I created Ajax.coffee the code got prepended to the app.js file, because it is higher in the structure. Is there a way to append the code instead? I really want to use a compile-to-single file rather than loading loads of files with requires, but the code prepending makes it a pain in the ass.
I am using PHPStorm and it's watchers.