File tree 7 files changed +8
-8
lines changed
7 files changed +8
-8
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import process from 'node:process'
2
2
import { getPackageInfo } from 'local-pkg'
3
- import type { VueJSXPluginOptions } from '@vue/babel-plugin-jsx'
4
3
import type { FilterPattern } from '@rollup/pluginutils'
4
+ import type { VueJSXPluginOptions } from '@vue/babel-plugin-jsx'
5
5
6
6
export type Vue2JSXOptions = {
7
7
functional ?: boolean
Original file line number Diff line number Diff line change 1
- import { type TransformOptions , transform } from '@babel/core'
1
+ import { transform , type TransformOptions } from '@babel/core'
2
2
// @ts -expect-error
3
3
import TS from '@babel/plugin-syntax-typescript'
4
4
// @ts -expect-error
Original file line number Diff line number Diff line change 1
- import { type TransformOptions , transform } from '@babel/core'
2
- import vue3Jsx from '@vue/babel-plugin-jsx'
1
+ import { transform , type TransformOptions } from '@babel/core'
3
2
// @ts -expect-error
4
3
import TS from '@babel/plugin-syntax-typescript'
4
+ import vue3Jsx from '@vue/babel-plugin-jsx'
5
5
import { isTS } from './utils'
6
6
import type { OptionsResolved } from './options'
7
7
Original file line number Diff line number Diff line change 1
- import { type UnpluginOptions , createUnplugin } from 'unplugin'
2
1
import { createFilter } from '@rollup/pluginutils'
2
+ import { createUnplugin , type UnpluginOptions } from 'unplugin'
3
3
import {
4
+ resolveOption ,
4
5
type Options ,
5
6
type OptionsResolved ,
6
- resolveOption ,
7
7
} from './core/options'
8
8
9
9
export default createUnplugin < Options | undefined > ( ( userOptions = { } ) => {
Original file line number Diff line number Diff line change 1
1
import { describe , expect , test } from 'vitest'
2
- import { type Options , resolveOption } from '../src/core/options'
2
+ import { resolveOption , type Options } from '../src/core/options'
3
3
import { transformVue2 } from '../src/core/vue2'
4
4
5
5
const transform = async ( code : string , userOptions : Options = { } ) => {
Original file line number Diff line number Diff line change 1
1
import { describe , expect , test } from 'vitest'
2
- import { type Options , resolveOption } from '../src/core/options'
2
+ import { resolveOption , type Options } from '../src/core/options'
3
3
import { transformVue3 } from '../src/core/vue3'
4
4
5
5
const transform = async (
You can’t perform that action at this time.
0 commit comments