47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
/*globals Handlebars: true */
|
|
import Handlebars from "./handlebars.runtime";
|
|
|
|
// Compiler imports
|
|
import AST from "./handlebars/compiler/ast";
|
|
import { parser as Parser, parse } from "./handlebars/compiler/base";
|
|
import { Compiler, compile, precompile } from "./handlebars/compiler/compiler";
|
|
import JavaScriptCompiler from "./handlebars/compiler/javascript-compiler";
|
|
|
|
var _create = Handlebars.create;
|
|
var create = function() {
|
|
var hb = _create();
|
|
|
|
hb.compile = function(input, options) {
|
|
return compile(input, options, hb);
|
|
};
|
|
hb.precompile = function (input, options) {
|
|
return precompile(input, options, hb);
|
|
};
|
|
|
|
hb.AST = AST;
|
|
hb.Compiler = Compiler;
|
|
hb.JavaScriptCompiler = JavaScriptCompiler;
|
|
hb.Parser = Parser;
|
|
hb.parse = parse;
|
|
|
|
return hb;
|
|
};
|
|
|
|
Handlebars = create();
|
|
Handlebars.create = create;
|
|
|
|
/*jshint -W040 */
|
|
/* istanbul ignore next */
|
|
var root = typeof global !== 'undefined' ? global : window,
|
|
$Handlebars = root.Handlebars;
|
|
/* istanbul ignore next */
|
|
Handlebars.noConflict = function() {
|
|
if (root.Handlebars === Handlebars) {
|
|
root.Handlebars = $Handlebars;
|
|
}
|
|
};
|
|
|
|
Handlebars['default'] = Handlebars;
|
|
|
|
export default Handlebars;
|