013d6347 by Michael Richards

Update the coffescript compiler for the project to join all files before compila…

…tion. Compile to the same dist/rivets.js target.
1 parent fd7fcbfa
......@@ -11,8 +11,19 @@ module.exports = (grunt) ->
coffee:
all:
options:
join: true
files:
'dist/rivets.js': 'src/rivets.coffee'
'dist/rivets.js': [
'src/rivets.coffee'
'src/util.coffee'
'src/view.coffee'
'src/bindings.coffee'
'src/parsers.coffee'
'src/binders.coffee'
'src/adapters.coffee'
'src/export.coffee'
]
concat:
all:
......