summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/compiler.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2011-07-30 12:18:56 -0500
committerkpdecker <kpdecker@gmail.com>2011-07-30 12:18:56 -0500
commit4a9270aa389c9afe3cc68d73dd79abe643186a5b (patch)
tree5909fa99eb2fdee0b6cc71dfa0fd99b9a972e971 /lib/handlebars/compiler/compiler.js
parent59f5331db47c4c6dce1cb82d05f25d08362b14b2 (diff)
downloadhandlebars.js-4a9270aa389c9afe3cc68d73dd79abe643186a5b.zip
handlebars.js-4a9270aa389c9afe3cc68d73dd79abe643186a5b.tar.gz
handlebars.js-4a9270aa389c9afe3cc68d73dd79abe643186a5b.tar.bz2
Fix module loading within node
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-rw-r--r--lib/handlebars/compiler/compiler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js
index 7739f9d..c9fb7f8 100644
--- a/lib/handlebars/compiler/compiler.js
+++ b/lib/handlebars/compiler/compiler.js
@@ -1,4 +1,4 @@
-var Handlebars = require("handlebars");
+var Handlebars = require("./base");
// BEGIN(BROWSER)
Handlebars.Compiler = function() {};