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) -> ...@@ -11,8 +11,19 @@ module.exports = (grunt) ->
11 11
12 coffee: 12 coffee:
13 all: 13 all:
14 options:
15 join: true
14 files: 16 files:
15 'dist/rivets.js': 'src/rivets.coffee' 17 'dist/rivets.js': [
18 'src/rivets.coffee'
19 'src/util.coffee'
20 'src/view.coffee'
21 'src/bindings.coffee'
22 'src/parsers.coffee'
23 'src/binders.coffee'
24 'src/adapters.coffee'
25 'src/export.coffee'
26 ]
16 27
17 concat: 28 concat:
18 all: 29 all:
......