Revert "wip: allow scriptCompiled to be cached on sfc descriptor"
This reverts commit 737ef424a0ca1eb3a856b737e269025fe0ced1d7.
This commit is contained in:
parent
6806facfa1
commit
9db42889e6
@ -20,18 +20,6 @@ export interface SFCParseOptions {
|
|||||||
compiler?: TemplateCompiler
|
compiler?: TemplateCompiler
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SFCDescriptor {
|
|
||||||
filename: string
|
|
||||||
source: string
|
|
||||||
template: SFCTemplateBlock | null
|
|
||||||
script: SFCScriptBlock | null
|
|
||||||
scriptSetup: SFCScriptBlock | null
|
|
||||||
scriptCompiled: SFCScriptBlock | null
|
|
||||||
styles: SFCStyleBlock[]
|
|
||||||
customBlocks: SFCBlock[]
|
|
||||||
cssVars: string[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface SFCBlock {
|
export interface SFCBlock {
|
||||||
type: string
|
type: string
|
||||||
content: string
|
content: string
|
||||||
@ -61,6 +49,17 @@ export interface SFCStyleBlock extends SFCBlock {
|
|||||||
module?: string | boolean
|
module?: string | boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface SFCDescriptor {
|
||||||
|
filename: string
|
||||||
|
source: string
|
||||||
|
template: SFCTemplateBlock | null
|
||||||
|
script: SFCScriptBlock | null
|
||||||
|
scriptSetup: SFCScriptBlock | null
|
||||||
|
styles: SFCStyleBlock[]
|
||||||
|
customBlocks: SFCBlock[]
|
||||||
|
cssVars: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface SFCParseResult {
|
export interface SFCParseResult {
|
||||||
descriptor: SFCDescriptor
|
descriptor: SFCDescriptor
|
||||||
errors: (CompilerError | SyntaxError)[]
|
errors: (CompilerError | SyntaxError)[]
|
||||||
@ -98,7 +97,6 @@ export function parse(
|
|||||||
template: null,
|
template: null,
|
||||||
script: null,
|
script: null,
|
||||||
scriptSetup: null,
|
scriptSetup: null,
|
||||||
scriptCompiled: null,
|
|
||||||
styles: [],
|
styles: [],
|
||||||
customBlocks: [],
|
customBlocks: [],
|
||||||
cssVars: []
|
cssVars: []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user