build: adjust compiler-core export to avoid collision
This commit is contained in:
parent
3bba461128
commit
7c030ee899
@ -1,4 +1,4 @@
|
|||||||
import { compile } from '../src'
|
import { baseCompile as compile } from '../src'
|
||||||
import { SourceMapConsumer, RawSourceMap } from 'source-map'
|
import { SourceMapConsumer, RawSourceMap } from 'source-map'
|
||||||
|
|
||||||
describe('compiler: integration tests', () => {
|
describe('compiler: integration tests', () => {
|
||||||
|
@ -14,7 +14,9 @@ import { transformStyle } from './transforms/transformStyle'
|
|||||||
|
|
||||||
export type CompilerOptions = ParserOptions & TransformOptions & CodegenOptions
|
export type CompilerOptions = ParserOptions & TransformOptions & CodegenOptions
|
||||||
|
|
||||||
export function compile(
|
// we name it `baseCompile` so that higher order compilers like @vue/compiler-dom
|
||||||
|
// can export `compile` while re-exporting everything else.
|
||||||
|
export function baseCompile(
|
||||||
template: string | RootNode,
|
template: string | RootNode,
|
||||||
options: CompilerOptions = {}
|
options: CompilerOptions = {}
|
||||||
): CodegenResult {
|
): CodegenResult {
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
import {
|
import { baseCompile, CompilerOptions, CodegenResult } from '@vue/compiler-core'
|
||||||
compile as baseCompile,
|
|
||||||
CompilerOptions,
|
|
||||||
CodegenResult
|
|
||||||
} from '@vue/compiler-core'
|
|
||||||
import { parserOptionsMinimal } from './parserOptionsMinimal'
|
import { parserOptionsMinimal } from './parserOptionsMinimal'
|
||||||
import { parserOptionsStandard } from './parserOptionsStandard'
|
import { parserOptionsStandard } from './parserOptionsStandard'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user