diff options
Diffstat (limited to 'lib/handlebars/compiler/base.js')
-rw-r--r-- | lib/handlebars/compiler/base.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/handlebars/compiler/base.js b/lib/handlebars/compiler/base.js index 8dd464d..adbf4f2 100644 --- a/lib/handlebars/compiler/base.js +++ b/lib/handlebars/compiler/base.js @@ -1,7 +1,7 @@ -import { parser } from "handlebars/compiler/parser"; -module AST from "handlebars/compiler/ast": +import parser from "./parser"; +import AST from "./ast"; -export Parser = parser; +export var parser = parser; export function parse(input) { // Just return if an already-compile AST was passed in. |