chore(deps): update devdependency vue-tsc to ^2.2.0 (v3) (#2966)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
renovate[bot]
2024-12-24 16:16:21 +01:00
committed by GitHub
parent c223281763
commit 4c0bdf38fc
5 changed files with 543 additions and 133 deletions

View File

@@ -10,7 +10,7 @@
"@nuxt/content": "https://pkg.pr.new/@nuxt/content@f124c95",
"@nuxt/image": "^1.8.1",
"@nuxt/ui": "latest",
"@nuxt/ui-pro": "https://pkg.pr.new/@nuxt/ui-pro@0f70402",
"@nuxt/ui-pro": "https://pkg.pr.new/@nuxt/ui-pro@93d6696",
"@nuxthub/core": "^0.8.10",
"@nuxtjs/plausible": "^1.2.0",
"@octokit/rest": "^21.0.2",

View File

@@ -136,7 +136,7 @@
"valibot": "^0.42.1",
"vitest": "^2.1.8",
"vitest-environment-nuxt": "^1.0.1",
"vue-tsc": "^2.1.10",
"vue-tsc": "^2.2.0",
"yup": "^1.6.1",
"zod": "^3.24.1"
},
@@ -150,6 +150,7 @@
"happy-dom": "14.12.3",
"rollup": "^4.24.0",
"typescript": "5.6.3",
"unimport": "3.14.5"
"unimport": "3.14.5",
"vue-tsc": "^2.2.0"
}
}

View File

@@ -19,6 +19,6 @@
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^5.4.11",
"vue-tsc": "^2.1.10"
"vue-tsc": "^2.2.0"
}
}

663
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,11 +5,11 @@ export interface IconProps {
</script>
<script setup lang="ts">
import { Icon } from '@iconify/vue'
import { Icon as IconifyIcon } from '@iconify/vue'
defineProps<IconProps>()
</script>
<template>
<Icon :icon="name.replace(/^i-/, '')" />
<IconifyIcon :icon="name.replace(/^i-/, '')" />
</template>