summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/index.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/index.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/index.js')
-rw-r--r--lib/handlebars/compiler/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/handlebars/compiler/index.js b/lib/handlebars/compiler/index.js
new file mode 100644
index 0000000..e62c768
--- /dev/null
+++ b/lib/handlebars/compiler/index.js
@@ -0,0 +1,7 @@
+// Each of these module will augment the Handlebars object as it loads. No need to perform addition operations
+module.exports = require("./base");
+require("./visitor");
+require("./printer");
+
+require("./ast");
+require("./compiler");