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.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/handlebars/compiler/index.js b/lib/handlebars/compiler/index.js
deleted file mode 100644
index 0cc5c01..0000000
--- a/lib/handlebars/compiler/index.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// Each of these module will augment the Handlebars object as it loads. No need to perform addition operations
-module.exports.attach = function(Handlebars) {
-
-var visitor = require("./visitor"),
- printer = require("./printer"),
- ast = require("./ast"),
- compiler = require("./compiler"),
- javascriptCompiler = require("./javascript-compiler");
-
-visitor.attach(Handlebars);
-printer.attach(Handlebars);
-ast.attach(Handlebars);
-compiler.attach(Handlebars);
-javascriptCompiler.attach(Handlebars);
-
-return Handlebars;
-
-};