If building AMD module and compiling multiple templates, return the full
templates (or partials) hash from the AMD module
This commit is contained in:
@@ -184,6 +184,13 @@ argv._.forEach(function(template) {
|
||||
// Output the content
|
||||
if (!argv.simple) {
|
||||
if (argv.amd) {
|
||||
if(argv._.length > 1){
|
||||
if(argv.partial){
|
||||
output.push('return Handlebars.partials;\n');
|
||||
} else {
|
||||
output.push('return templates;\n');
|
||||
}
|
||||
}
|
||||
output.push('});');
|
||||
} else if (!argv.commonjs) {
|
||||
output.push('})();');
|
||||
|
||||
Reference in New Issue
Block a user