mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 09:35:39 -05:00
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:
parent
9f216e3361
commit
3fd24a28ce
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue