From 02f5f893055a1fa4ebc2eaa5557d310ba4540b2c Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 14 Aug 2019 21:13:17 -0400 Subject: [PATCH] Reinstate walk --- src/compiler/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/index.ts b/src/compiler/index.ts index ba68231837..14d55f5470 100644 --- a/src/compiler/index.ts +++ b/src/compiler/index.ts @@ -1,5 +1,6 @@ export { default as compile } from './compile/index'; export { default as parse } from './parse/index'; export { default as preprocess } from './preprocess/index'; +export { walk } from 'estree-walker'; export const VERSION = '__VERSION__';