Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wycats/handlebars.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kpdecker committed May 22, 2013
2 parents 533be69 + 10669e0 commit 6bf9c6f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions bin/handlebars
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -168,10 +168,14 @@ function processTemplate(template, root) {
if (argv.simple) { if (argv.simple) {
output.push(handlebars.precompile(data, options) + '\n'); output.push(handlebars.precompile(data, options) + '\n');
} else if (argv.partial) { } else if (argv.partial) {
if(argv.amd && argv._.length == 1){ output.push('return '); } if(argv.amd && (argv._.length == 1 && !fs.statSync(argv._[0]).isDirectory())) {
output.push('return ');
}
output.push('Handlebars.partials[\'' + template + '\'] = template(' + handlebars.precompile(data, options) + ');\n'); output.push('Handlebars.partials[\'' + template + '\'] = template(' + handlebars.precompile(data, options) + ');\n');
} else { } else {
if(argv.amd && argv._.length == 1){ output.push('return '); } if(argv.amd && (argv._.length == 1 && !fs.statSync(argv._[0]).isDirectory())) {
output.push('return ');
}
output.push('templates[\'' + template + '\'] = template(' + handlebars.precompile(data, options) + ');\n'); output.push('templates[\'' + template + '\'] = template(' + handlebars.precompile(data, options) + ');\n');
} }
} }
Expand All @@ -184,7 +188,7 @@ argv._.forEach(function(template) {
// Output the content // Output the content
if (!argv.simple) { if (!argv.simple) {
if (argv.amd) { if (argv.amd) {
if(argv._.length > 1){ if(argv._.length > 1 || (argv._.length == 1 && fs.statSync(argv._[0]).isDirectory())) {
if(argv.partial){ if(argv.partial){
output.push('return Handlebars.partials;\n'); output.push('return Handlebars.partials;\n');
} else { } else {
Expand Down

0 comments on commit 6bf9c6f

Please sign in to comment.