summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bench/precompile-size.js2
-rw-r--r--bench/throughput.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/bench/precompile-size.js b/bench/precompile-size.js
index 12fb0dc..66eacd0 100644
--- a/bench/precompile-size.js
+++ b/bench/precompile-size.js
@@ -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) {
diff --git a/bench/throughput.js b/bench/throughput.js
index b750e44..308446a 100644
--- a/bench/throughput.js
+++ b/bench/throughput.js
@@ -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) {