summaryrefslogtreecommitdiffstats
path: root/runtime.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2014-11-26 07:49:29 -0600
committerkpdecker <kpdecker@gmail.com>2014-11-26 07:49:29 -0600
commit5594416121734e91a6071ab23425c81eaf64fe86 (patch)
treeb5ecf6910e1db311adfb27a87c13e434d057a1d2 /runtime.js
parentc4b3c901a535df62edd8e750bd600aec6cd89413 (diff)
downloadhandlebars.js-5594416121734e91a6071ab23425c81eaf64fe86.zip
handlebars.js-5594416121734e91a6071ab23425c81eaf64fe86.tar.gz
handlebars.js-5594416121734e91a6071ab23425c81eaf64fe86.tar.bz2
Export the default object for handlebars/runtime
Maintains consistency with the prior export pattern, while avoids the knarly default loading issues.
Diffstat (limited to 'runtime.js')
-rw-r--r--runtime.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime.js b/runtime.js
index b7a7b12..1896fa9 100644
--- a/runtime.js
+++ b/runtime.js
@@ -1,3 +1,3 @@
// Create a simple path alias to allow browserify to resolve
// the runtime on a supported path.
-module.exports = require('./dist/cjs/handlebars.runtime');
+module.exports = require('./dist/cjs/handlebars.runtime').default;