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 24, 2024
1 parent 0354407 commit 157b2c8
Show file tree
Hide file tree
Showing 7 changed files with 1,864 additions and 1,680 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/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 @@ -10,7 +11,6 @@ import {
LazyKirbyBlockSectionBlog,
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,5 +1,5 @@
import { joinURL } from 'ufo'
import type { HookResult } from '@nuxt/schema'
import { joinURL } from 'ufo'
import type { KirbyPageData } from '~/queries'

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

export default await antfu(
export default antfu(
{
stylistic: false,
unocss: 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.8.0",
"packageManager": "pnpm@9.11.0",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
Expand All @@ -15,22 +15,22 @@
"prepare": "nuxi prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@antfu/eslint-config": "^3.7.1",
"@nuxtjs/plausible": "^1.0.2",
"@sindresorhus/slugify": "^2.2.1",
"@types/node": "^20.16.1",
"@unocss/eslint-config": "^0.62.2",
"@unocss/nuxt": "^0.62.2",
"@unocss/preset-wind": "^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.6",
"@unocss/eslint-config": "^0.62.4",
"@unocss/nuxt": "^0.62.4",
"@unocss/preset-wind": "^0.62.4",
"@vueuse/nuxt": "^11.1.0",
"eslint": "^9.11.1",
"nuxt": "^3.13.2",
"nuxt-kql": "^1.5.2",
"nuxt-vitalizer": "^0.10.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"unocss": "^0.62.2",
"unocss": "^0.62.4",
"vue-router-better-scroller": "^0.0.0",
"vue-tsc": "^2.0.29"
"vue-tsc": "^2.1.6"
}
}
Loading

0 comments on commit 157b2c8

Please sign in to comment.