Fix metrics exec

This commit is contained in:
kpdecker
2013-10-09 04:02:21 -07:00
parent 9769045e04
commit e5a4889b36
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ var _ = require('underscore'),
module.exports = function(grunt, callback) {
// Deferring to here in case we have a build for parser, etc as part of this grunt exec
var Handlebars = require('../lib/handlebars');
var Handlebars = require('../lib');
var templateSizes = {};
_.each(templates, function(info, template) {
+1 -1
View File
@@ -114,7 +114,7 @@ function makeSuite(bench, name, template, handlebarsOnly) {
module.exports = function(grunt, callback) {
// Deferring load incase we are being run inline with the grunt build
Handlebars = require('../lib/handlebars');
Handlebars = require('../lib');
console.log('Execution Throughput');
runner(grunt, makeSuite, function(times, scaled) {