chore: move style vars deprecation warning to a parse error
This commit is contained in:
parent
ac80ea2c19
commit
9cb74960ac
@ -11,7 +11,7 @@ import { RawSourceMap, SourceMapGenerator } from 'source-map'
|
|||||||
import { TemplateCompiler } from './compileTemplate'
|
import { TemplateCompiler } from './compileTemplate'
|
||||||
import { Statement } from '@babel/types'
|
import { Statement } from '@babel/types'
|
||||||
import { parseCssVars } from './cssVars'
|
import { parseCssVars } from './cssVars'
|
||||||
import { warnExperimental, warnOnce } from './warn'
|
import { warnExperimental } from './warn'
|
||||||
|
|
||||||
export interface SFCParseOptions {
|
export interface SFCParseOptions {
|
||||||
filename?: string
|
filename?: string
|
||||||
@ -168,9 +168,11 @@ export function parse(
|
|||||||
case 'style':
|
case 'style':
|
||||||
const style = createBlock(node, source, pad) as SFCStyleBlock
|
const style = createBlock(node, source, pad) as SFCStyleBlock
|
||||||
if (style.attrs.vars) {
|
if (style.attrs.vars) {
|
||||||
warnOnce(
|
errors.push(
|
||||||
`<style vars> has been replaced by a new proposal: ` +
|
new SyntaxError(
|
||||||
`https://github.com/vuejs/rfcs/pull/231`
|
`<style vars> has been replaced by a new proposal: ` +
|
||||||
|
`https://github.com/vuejs/rfcs/pull/231`
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
descriptor.styles.push(style)
|
descriptor.styles.push(style)
|
||||||
|
Loading…
Reference in New Issue
Block a user