Skip to content

Commit 99d5060

Browse files
committed
fix: broken util imports
1 parent f10e033 commit 99d5060

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@nuxtjs/robots",
33
"type": "module",
44
"version": "5.6.3",
5-
"packageManager": "pnpm@10.24.0",
5+
"packageManager": "pnpm@10.25.0",
66
"description": "Tame the robots crawling and indexing your Nuxt site with ease.",
77
"author": {
88
"name": "Harlan Wilton",

pnpm-workspace.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ trustPolicy: no-downgrade
55
packages:
66
- client
77
catalog:
8-
'@antfu/eslint-config': ^6.4.1
8+
'@antfu/eslint-config': ^6.6.1
99
'@arethetypeswrong/cli': ^0.18.2
1010
'@fingerprintjs/botd': ^2.0.0
1111
'@headlessui/vue': ^1.7.23
@@ -16,7 +16,7 @@ catalog:
1616
'@nuxt/content': ^3.9.0
1717
'@nuxt/devtools-kit': ^3.1.1
1818
'@nuxt/devtools-ui-kit': ^3.1.1
19-
'@nuxt/kit': ^4.2.1
19+
'@nuxt/kit': ^4.2.2
2020
'@nuxt/module-builder': ^1.0.2
2121
'@nuxt/test-utils': ^3.21.0
2222
'@nuxtjs/color-mode': ^4.0.0
@@ -36,7 +36,7 @@ catalog:
3636
firebase-functions: ^7.0.1
3737
floating-vue: ^5.2.2
3838
happy-dom: ^20.0.11
39-
nuxt: ^4.2.1
39+
nuxt: ^4.2.2
4040
nuxt-site-config: ^3.2.11
4141
pathe: ^2.0.3
4242
pkg-types: ^2.3.0

src/i18n.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { AutoI18nConfig, NormalisedLocales } from './runtime/types'
33
import { getNuxtModuleVersion, hasNuxtModule, hasNuxtModuleCompatibility } from '@nuxt/kit'
44
import { getNuxtModuleOptions } from './kit'
55
import { logger } from './logger'
6-
import { isInternalRoute, mergeOnKey } from './runtime/util'
6+
import { isInternalRoute, mergeOnKey } from './util'
77

88
export function splitPathForI18nLocales(path: string, autoI18n: AutoI18nConfig) {
99
const locales = autoI18n.strategy === 'prefix_except_default' ? autoI18n.locales.filter(l => l.code !== autoI18n.defaultLocale) : autoI18n.locales

src/module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {
3131
normalizeGroup,
3232
parseRobotsTxt,
3333
validateRobots,
34-
} from './runtime/util'
34+
} from './util'
3535

3636
export interface ModuleOptions {
3737
/**

0 commit comments

Comments
 (0)