Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Feb 3, 2025
1 parent 1fb7526 commit d6d443c
Show file tree
Hide file tree
Showing 8 changed files with 2,360 additions and 2,443 deletions.
2 changes: 1 addition & 1 deletion components/App/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { NuxtLink } from '#components'
import type { KirbyPageData } from '~/queries'
import { NuxtLink } from '#components'
// Wait for the page to be loaded before rendering this component,
// otherwise `usePage()` would return `undefined`
Expand Down
2 changes: 1 addition & 1 deletion components/Kirby/Block/NotesGrid.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import type { KirbyBlock } from '#nuxt-kql'
import { notesQuery } from '~/queries'
import type { KirbyNotesResponse } from '~/queries'
import { notesQuery } from '~/queries'
defineProps<{
block: KirbyBlock<'notes-grid'>
Expand Down
2 changes: 1 addition & 1 deletion composables/page.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { HookResult } from '@nuxt/schema'
import type { KirbySharedPageData } from '~/queries'
import { kirbyStatic } from '#nuxt-kql'
import { joinURL } from 'ufo'
import type { KirbySharedPageData } from '~/queries'

/**
* Returns static data prefetched at build time
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineNuxtConfig({
// https://github.com/johannschopplich/cacao-kit-frontend/tree/chore/without-i18n
modules: ['@nuxtjs/i18n', '@unocss/nuxt', '@vueuse/nuxt', 'nuxt-kql'],

compatibilityDate: '2024-04-03',
compatibilityDate: '2024-09-23',

devtools: {
enabled: true,
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"private": true,
"packageManager": "pnpm@9.13.2",
"packageManager": "pnpm@9.15.4",
"scripts": {
"dev": "nuxi dev",
"dev:tunnel": "nuxi dev --tunnel",
Expand All @@ -16,19 +16,19 @@
"prepare": "nuxi prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@nuxtjs/i18n": "^9.0.0",
"@antfu/eslint-config": "^4.1.1",
"@nuxtjs/i18n": "^9.1.5",
"@sindresorhus/slugify": "^2.2.1",
"@types/node": "^22.9.0",
"@unocss/eslint-config": "^0.64.1",
"@unocss/nuxt": "^0.64.1",
"@vueuse/nuxt": "^11.2.0",
"eslint": "^9.15.0",
"nuxt": "^3.14.159",
"@types/node": "^22.13.0",
"@unocss/eslint-config": "^65.4.3",
"@unocss/nuxt": "^65.4.3",
"@vueuse/nuxt": "^12.5.0",
"eslint": "^9.19.0",
"nuxt": "^3.15.4",
"nuxt-kql": "^1.5.4",
"prettier": "^3.3.3",
"prettier": "^3.4.2",
"sitemap": "^8.0.0",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.10"
"typescript": "^5.7.3",
"vue-tsc": "^2.2.0"
}
}
2 changes: 1 addition & 1 deletion pages/about.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script setup lang="ts">
// This Nuxt page will render the about page
import { aboutQuery } from '~/queries'
import type { KirbyAboutResponse } from '~/queries'
import { aboutQuery } from '~/queries'
defineI18nRoute({
paths: {
Expand Down
4,767 changes: 2,342 additions & 2,425 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion wrangler.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "cacao-kit"
pages_build_output_dir = "./dist"
compatibility_date = "2024-08-23"
compatibility_date = "2024-09-23"

0 comments on commit d6d443c

Please sign in to comment.