diff options
author | kpdecker <kpdecker@gmail.com> | 2014-11-26 07:49:29 -0600 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2014-11-26 07:49:29 -0600 |
commit | 5594416121734e91a6071ab23425c81eaf64fe86 (patch) | |
tree | b5ecf6910e1db311adfb27a87c13e434d057a1d2 /runtime.js | |
parent | c4b3c901a535df62edd8e750bd600aec6cd89413 (diff) | |
download | handlebars.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.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |