File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ import type { ResolvedOptions } from '.'
66// ssr and non ssr builds would output different script content
77const clientCache = new WeakMap < SFCDescriptor , SFCScriptBlock | null > ( )
88const ssrCache = new WeakMap < SFCDescriptor , SFCScriptBlock | null > ( )
9- export const depToSFCMap = new Map < string , string > ( )
9+
10+ export const typeDepToSFCMap = new Map < string , Set < string > > ( )
1011
1112export function invalidateScript ( filename : string ) : void {
1213 const desc = descriptorCache . get ( filename )
@@ -43,8 +44,6 @@ export function isUseInlineTemplate(
4344
4445export const scriptIdentifier = `_sfc_main`
4546
46- export const typeDepToSFCMap = new Map < string , Set < string > > ( )
47-
4847export function resolveScript (
4948 descriptor : SFCDescriptor ,
5049 options : ResolvedOptions ,
You can’t perform that action at this time.
0 commit comments