I noticed that my dependencies exploded migrating from 0.6.4 to 0.6.7
the reason is that i need to prepend a slash ( / ) before any filename
so if i have main.coffee and lib.coffee in src
i had to write
#<< /lib
same thing if lib.coffee is in libs folder
#<< /libs/lib
but not if i want the full folder
#<< libs/*
which works like a charm
I noticed that my dependencies exploded migrating from 0.6.4 to 0.6.7 the reason is that i need to prepend a slash ( / ) before any filename so if i have
main.coffee
andlib.coffee
insrc
i had to write#<< /lib
same thing iflib.coffee
is inlibs
folder#<< /libs/lib
but not if i want the full folder
#<< libs/*
which works like a charmis this an intended behavior ?