Skip to content

Commit f4dcbbc

Browse files
committed
chore: fix build
1 parent fbd0fe9 commit f4dcbbc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

packages/compiler-sfc/__tests__/__snapshots__/compileScript.spec.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ return { a }
344344
}"
345345
`;
346346
347-
exports[`SFC compile <script setup> binding analysis for destructur 1`] = `
347+
exports[`SFC compile <script setup> binding analysis for destructure 1`] = `
348348
"export default {
349349
setup(__props, { expose }) {
350350
expose();

packages/runtime-core/src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ export {
154154
UnwrapRef,
155155
ShallowRef,
156156
ShallowUnwrapRef,
157-
RefUnwrapBailTypes,
158157
CustomRefFactory,
159158
ReactiveFlags,
160159
DeepReadonly,

test-dts/refTransformMacros.test-d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { WritableComputedRef } from '@vue/reactivity'
22
import { expectType, ref, computed, Ref, ComputedRef } from './index'
3-
import 'vue/ref-macros'
4-
import { RefType, RefTypes } from 'vue/ref-macros'
3+
import 'vue/macros-global'
4+
import { RefType, RefTypes } from 'vue/macros'
55

66
// wrapping refs
77

0 commit comments

Comments
 (0)