Skip to content

Commit ee86603

Browse files
committedMar 1, 2025·
fix: v1 deprecations
1 parent 85194ef commit ee86603

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed
 

‎packages/unhead/src/composables.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ export function useServerSeoMeta<T extends Unhead<any>>(unhead: T, input: UseSeo
6868
return useSeoMeta(unhead, input, { ...options, mode: 'server' })
6969
}
7070

71-
export { useScript } from './scripts'
71+
export { resolveScriptKey, useScript } from './scripts'

‎packages/unhead/src/scripts/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export type * from './types'
2-
export { useScript } from './useScript'
2+
export { resolveScriptKey, useScript } from './useScript'
33
export { createSpyProxy } from './utils'

‎packages/unhead/src/scripts/useScript.ts

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ import type {
1717
import { ScriptNetworkEvents } from '../utils'
1818
import { createForwardingProxy, createNoopedRecordingProxy, replayProxyRecordings } from './proxy'
1919

20+
/**
21+
* @deprecated compute key manually
22+
*/
2023
export function resolveScriptKey(input: UseScriptResolvedInput): string {
2124
return input.key || input.src || (typeof input.innerHTML === 'string' ? input.innerHTML : '')
2225
}

‎packages/vue/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ export { VueHeadMixin } from './VueHeadMixin'
99
/**
1010
* @deprecated Use createUnhead
1111
*/
12-
const createCoreHead = createUnhead
13-
export { createCoreHead, createUnhead }
12+
const createHeadCore = createUnhead
13+
export { createHeadCore, createUnhead }

0 commit comments

Comments
 (0)
Please sign in to comment.