Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Sep 14, 2024
1 parent dbe3fbd commit 254cde1
Show file tree
Hide file tree
Showing 9 changed files with 1,833 additions and 1,593 deletions.
2 changes: 1 addition & 1 deletion components/Kirby/Block/Heading.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import slugify from '@sindresorhus/slugify'
import type { KirbyBlock } from '#nuxt-kql'
import slugify from '@sindresorhus/slugify'
defineProps<{
block: KirbyBlock<'heading'>
Expand Down
2 changes: 1 addition & 1 deletion components/Kirby/Block/NotesGrid.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { notesQuery } from '~/queries'
import type { KirbyBlock } from '#nuxt-kql'
import { notesQuery } from '~/queries'
import type { KirbyNotesResponse } from '~/queries'
defineProps<{
Expand Down
2 changes: 1 addition & 1 deletion components/Kirby/Blocks.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script setup lang="ts">
import type { KirbyBlock } from '#nuxt-kql'
import type { ComponentPublicInstance } from 'vue'
import {
LazyKirbyBlockHeading,
Expand All @@ -12,7 +13,6 @@ import {
LazyKirbyBlockTeamStructure,
LazyKirbyBlockText,
} from '#components'
import type { KirbyBlock } from '#nuxt-kql'
defineProps<{
blocks: KirbyBlock<string>[]
Expand Down
2 changes: 1 addition & 1 deletion composables/page.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { joinURL } from 'ufo'
import type { HookResult } from '@nuxt/schema'
import { kirbyStatic } from '#nuxt-kql'
import { joinURL } from 'ufo'
import type { KirbySharedPageData } from '~/queries'

/**
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import antfu from '@antfu/eslint-config'

export default await antfu(
export default antfu(
{
stylistic: false,
unocss: true,
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"private": true,
"packageManager": "pnpm@9.8.0",
"packageManager": "pnpm@9.10.0",
"scripts": {
"dev": "nuxi dev",
"dev:tunnel": "nuxi dev --tunnel",
Expand All @@ -16,19 +16,19 @@
"prepare": "nuxi prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@nuxtjs/i18n": "^8.5.0",
"@antfu/eslint-config": "^3.6.0",
"@nuxtjs/i18n": "^8.5.3",
"@sindresorhus/slugify": "^2.2.1",
"@types/node": "^20.16.1",
"@unocss/eslint-config": "^0.62.2",
"@unocss/nuxt": "^0.62.2",
"@vueuse/nuxt": "^11.0.1",
"eslint": "^9.9.0",
"nuxt": "^3.13.0",
"nuxt-kql": "^1.5.0",
"@types/node": "^20.16.5",
"@unocss/eslint-config": "^0.62.3",
"@unocss/nuxt": "^0.62.3",
"@vueuse/nuxt": "^11.0.3",
"eslint": "^9.10.0",
"nuxt": "^3.13.1",
"nuxt-kql": "^1.5.2",
"prettier": "^3.3.3",
"sitemap": "^8.0.0",
"typescript": "^5.5.4",
"vue-tsc": "^2.0.29"
"vue-tsc": "^2.1.6"
}
}
3,386 changes: 1,813 additions & 1,573 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions queries/about.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { sharedQuerySelects } from './page'
import type { KirbySharedPageData } from './page'
import type {
KirbyLayout,
KirbyQueryResponse,
KirbyQuerySchema,
} from '#nuxt-kql'
import type { KirbySharedPageData } from './page'
import { sharedQuerySelects } from './page'

export interface KirbyAboutData extends KirbySharedPageData {
layouts: KirbyLayout[]
Expand Down
4 changes: 2 additions & 2 deletions server/routes/sitemap.xml.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { joinURL, withoutTrailingSlash } from 'ufo'
import { SitemapStream, streamToPromise } from 'sitemap'
import type { KirbyApiResponse } from 'kirby-types'
import { SitemapStream, streamToPromise } from 'sitemap'
import { joinURL, withoutTrailingSlash } from 'ufo'

interface KirbySitemapItem {
url: string
Expand Down

0 comments on commit 254cde1

Please sign in to comment.