Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#1529)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Roe <[email protected]>
  • Loading branch information
renovate[bot] and danielroe authored Aug 21, 2024
1 parent 9a12ec2 commit d02d1a5
Show file tree
Hide file tree
Showing 15 changed files with 2,008 additions and 2,845 deletions.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { debounce } from 'perfect-debounce'
import type { ParsedContent } from '@nuxt/content/dist/runtime/types'
import type { ParsedContent } from '@nuxt/content'
import './styles/twoslash.css'
const search = ref(null)
Expand Down
2 changes: 1 addition & 1 deletion components/AppHeader.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { NavItem } from '@nuxt/content/dist/runtime/types'
import type { NavItem } from '@nuxt/content'
import type { Link } from '#ui-pro/types'
const logo = ref(null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ defineProps({
default: () => []
}
})
type Achievement = {
title: string
// Work around a type mismatch where we have no access to BadgeColors from @nuxt/ui
color: any
}
</script>
<template>
Expand Down Expand Up @@ -52,7 +58,7 @@ defineProps({
<ul class="flex gap-x-1 flex-wrap gap-2">
<li v-for="achievement in achievements" :key="achievement.title">
<UBadge v-bind="achievement" variant="subtle" />
<UBadge v-bind="achievement as Achievement" variant="subtle" />
</li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion error.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { ParsedContent } from '@nuxt/content/dist/runtime/types'
import type { ParsedContent } from '@nuxt/content'
import type { NuxtError } from '#app'
useSeoMeta({
Expand Down
3 changes: 0 additions & 3 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,6 @@ export default defineNuxtConfig({
colorMode: {
preference: 'dark'
},
ui: {
icons: ['simple-icons', 'ph', 'uil', 'heroicons', 'octicon', 'logos']
},
// image: {
// ipx: {
// baseURL: 'https://ipx.nuxt.com'
Expand Down
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nuxt.com",
"version": "0.3.11",
"packageManager": "pnpm@9.3.0",
"packageManager": "pnpm@9.7.1",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
Expand All @@ -13,53 +13,53 @@
"test": "pnpm lint && pnpm typecheck"
},
"dependencies": {
"@iconify-json/heroicons": "^1.1.21",
"@iconify-json/logos": "^1.1.43",
"@iconify-json/octicon": "^1.1.54",
"@iconify-json/ph": "^1.1.13",
"@iconify-json/simple-icons": "^1.1.106",
"@iconify-json/uil": "^1.1.8",
"@nuxt/content": "^2.12.1",
"@nuxt/fonts": "^0.7.0",
"@iconify-json/heroicons": "^1.1.24",
"@iconify-json/logos": "^1.1.44",
"@iconify-json/octicon": "^1.1.57",
"@iconify-json/ph": "^1.1.14",
"@iconify-json/simple-icons": "^1.1.114",
"@iconify-json/uil": "^1.1.9",
"@nuxt/content": "^2.13.2",
"@nuxt/fonts": "^0.7.2",
"@nuxt/image": "^1.7.0",
"@nuxt/ui-pro": "^1.3.0",
"@nuxt/scripts": "^0.6.5",
"@nuxt/ui-pro": "^1.4.1",
"@nuxthq/studio": "^2.0.3",
"@nuxtjs/html-validator": "^1.8.2",
"@nuxtjs/plausible": "^1.0.0",
"@vueuse/core": "^11.0.0",
"@vueuse/components": "^11.0.0",
"@vueuse/nuxt": "^11.0.0",
"@nuxtjs/plausible": "^1.0.2",
"@vueuse/core": "^11.0.1",
"@vueuse/components": "^11.0.1",
"@vueuse/nuxt": "^11.0.1",
"feed": "^4.2.2",
"floating-vue": "^5.2.2",
"nuxt": "^3.12.4",
"nuxt-og-image": "^3.0.0-rc.53",
"nuxt-og-image": "^3.0.0-rc.65",
"ofetch": "^1.3.4",
"perfect-debounce": "^1.0.0",
"scule": "^1.3.0",
"sitemap": "^8.0.0",
"std-env": "^3.7.0",
"ufo": "^1.5.3",
"@nuxt/scripts": "^0.6.5"
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint": "^0.3.13",
"@nuxt/eslint": "^0.5.1",
"@nuxt/test-utils": "^3.14.1",
"@nuxtjs/turnstile": "^0.8.0",
"@nuxtjs/turnstile": "^0.9.3",
"@testing-library/vue": "^8.1.0",
"capture-website": "^4.1.0",
"eslint": "^9.5.0",
"eslint": "^9.9.0",
"nuxt-build-cache": "^0.1.1",
"nuxt-content-twoslash": "0.0.10",
"shiki": "^1.7.0",
"nuxt-content-twoslash": "0.1.1",
"shiki": "^1.14.1",
"twoslash": "^0.2.9",
"vitest": "^2.0.1",
"vue": "^3.4.29",
"vue-tsc": "^2.0.16"
"vitest": "^2.0.5",
"vue": "^3.4.38",
"vue-tsc": "^2.0.29"
},
"resolutions": {
"@nuxt/kit": "3.12.4",
"@nuxt/schema": "3.12.4",
"vue-tsc": "2.0.16",
"vue-tsc": "^2.0.29",
"twoslash": "^0.2.9",
"twoslash-vue": "^0.2.9"
}
Expand Down
2 changes: 1 addition & 1 deletion pages/docs.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { NavItem } from '@nuxt/content/dist/runtime/types'
import type { NavItem } from '@nuxt/content'
const navigation = inject<Ref<NavItem[]>>('navigation')
Expand Down
2 changes: 1 addition & 1 deletion pages/docs/[...slug].vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { withoutTrailingSlash } from 'ufo'
import type { NavItem } from '@nuxt/content/dist/runtime/types'
import type { NavItem } from '@nuxt/content'
const navigation = inject<Ref<NavItem[]>>('navigation')
Expand Down
Loading

0 comments on commit d02d1a5

Please sign in to comment.