Eliminate unjoined file brunch warnings

By specifying the directories that should be watched/built (i.e.
exclude `test/server`)

Checking this fix in from @es128
This commit is contained in:
Matt Lott 2014-10-18 22:11:39 -07:00
parent 9f216e3361
commit 3fd24a28ce

View file

@ -4,7 +4,8 @@ startsWith = (string, substring) ->
exports.config =
paths:
'public': 'public'
public: 'public'
watched: ['app', 'vendor', 'test/app', 'test/demo']
conventions:
ignored: (path) -> startsWith(sysPath.basename(path), '_')
sourceMaps: true