File tree 1 file changed +2
-3
lines changed
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 '.'
6
6
// ssr and non ssr builds would output different script content
7
7
const clientCache = new WeakMap < SFCDescriptor , SFCScriptBlock | null > ( )
8
8
const ssrCache = new WeakMap < SFCDescriptor , SFCScriptBlock | null > ( )
9
- export const depToSFCMap = new Map < string , string > ( )
9
+
10
+ export const typeDepToSFCMap = new Map < string , Set < string > > ( )
10
11
11
12
export function invalidateScript ( filename : string ) : void {
12
13
const desc = descriptorCache . get ( filename )
@@ -43,8 +44,6 @@ export function isUseInlineTemplate(
43
44
44
45
export const scriptIdentifier = `_sfc_main`
45
46
46
- export const typeDepToSFCMap = new Map < string , Set < string > > ( )
47
-
48
47
export function resolveScript (
49
48
descriptor : SFCDescriptor ,
50
49
options : ResolvedOptions ,
You can’t perform that action at this time.
0 commit comments