I am new to Grunt/Yeoman and I have an existing app with 40+ Coffeescript files like this:
scripts/
lib/
...
common/
...
util/
...
app/
views/
models/
A.cofffee
B.cofffee
C.cofffee
I want to concatenate them in a specific order and compile into one file.
So I'd like to say "compile in this order"
scripts/lib/some_superclass.coffee
scripts/lib/*
common/*
util/app/views/*
util/app/models/some_model_that_needs_to_be_required_first.coffee
util/app/models/*
How is this problem tackled in Grunt/Yeoman projects? (I really don't want to spell each file out)