Skip to content

Commit

Permalink
Merge pull request tbranyen#114 from barraponto/patch-1
Browse files Browse the repository at this point in the history
Suggestion to fix tbranyen#104
  • Loading branch information
tbranyen committed Jul 17, 2012
2 parents 0659ccf + 8b13be2 commit cba64e0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions grunt.js
Expand Up @@ -40,6 +40,23 @@ module.exports = function(grunt) {
"app/templates/**/*.html"
]
},

// The handlebars task compiles all application templates into JavaScript
// functions using Handlebars templating engine. You will need to install
// grunt-handlebars globally in order to run this task.
//
// Since this task defaults to writing to the same file as the jst task,
// edit the task or avoid using the two at the same time.
//
// The concat task depends on this file to exist, so if you decide to
// remove this, ensure concat is updated accordingly.
handlebars: {
all: {
src: "app/templates",
dest: "dist/debug/templates.js"
}
},


// The concatenate task is used here to merge the almond require/define
// shim and the templates into the application code. It's named
Expand Down

0 comments on commit cba64e0

Please sign in to comment.