summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/index.js
diff options
context:
space:
mode:
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");