We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d74f21a commit acd869fCopy full SHA for acd869f
packages/compiler-sfc/src/index.ts
@@ -14,7 +14,10 @@ export {
14
export { parse as babelParse } from '@babel/parser'
15
import MagicString from 'magic-string'
16
export { MagicString }
17
-export { walk } from 'estree-walker'
+// technically internal but we want it in @vue/repl, cast it as any to avoid
18
+// relying on estree types
19
+import { walk as _walk } from 'estree-walker'
20
+export const walk = _walk as any
21
export {
22
generateCodeFrame,
23
walkIdentifiers,
0 commit comments