aboutsummaryrefslogtreecommitdiff
path: root/node_modules/handlebars/lib/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/handlebars/lib/index.js')
-rw-r--r--node_modules/handlebars/lib/index.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/node_modules/handlebars/lib/index.js b/node_modules/handlebars/lib/index.js
new file mode 100644
index 000000000..0383c02f7
--- /dev/null
+++ b/node_modules/handlebars/lib/index.js
@@ -0,0 +1,25 @@
+// USAGE:
+// var handlebars = require('handlebars');
+/* eslint-disable no-var */
+
+// var local = handlebars.create();
+
+var handlebars = require('../dist/cjs/handlebars')['default'];
+
+var printer = require('../dist/cjs/handlebars/compiler/printer');
+handlebars.PrintVisitor = printer.PrintVisitor;
+handlebars.print = printer.print;
+
+module.exports = handlebars;
+
+// Publish a Node.js require() handler for .handlebars and .hbs files
+function extension(module, filename) {
+ var fs = require('fs');
+ var templateString = fs.readFileSync(filename, 'utf8');
+ module.exports = handlebars.compile(templateString);
+}
+/* istanbul ignore else */
+if (typeof require !== 'undefined' && require.extensions) {
+ require.extensions['.handlebars'] = extension;
+ require.extensions['.hbs'] = extension;
+}