Skip to content

Commit

Permalink
chore: upgrade to nuxt 3.5 (#241)
Browse files Browse the repository at this point in the history
* update to v3.5

* remove extended types for now
  • Loading branch information
cwaring authored May 16, 2023
1 parent c16f57c commit b72cdb0
Show file tree
Hide file tree
Showing 4 changed files with 705 additions and 664 deletions.
4 changes: 1 addition & 3 deletions components/AppLink.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<script setup lang="ts">
import type { NuxtLinkProps } from '#app'
export interface AppLinkProps extends NuxtLinkProps { href?: string; to?: string }
export interface AppLinkProps { href?: string; to?: string }
defineProps<AppLinkProps>()
function isExternal(href: string | undefined) {
Expand Down
4 changes: 1 addition & 3 deletions components/Btn.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<script setup lang="ts">
import type { AppLinkProps } from '@/components/AppLink.vue'
interface Props extends AppLinkProps {
interface Props {
primary?: boolean
outline?: boolean
full?: boolean
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ipfs-website",
"version": "3.0.0",
"private": true,
"packageManager": "[email protected].0",
"packageManager": "[email protected].1",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
Expand All @@ -21,12 +21,12 @@
"@iconify-json/carbon": "^1.1.16",
"@nuxt/content": "^2.6.0",
"@nuxtjs/plausible": "^0.2.1",
"@unocss/eslint-config": "^0.51.12",
"@unocss/nuxt": "^0.51.12",
"@unocss/preset-icons": "^0.51.12",
"@unocss/eslint-config": "^0.51.13",
"@unocss/nuxt": "^0.51.13",
"@unocss/preset-icons": "^0.51.13",
"@vueuse/nuxt": "^10.1.2",
"eslint": "^8.40.0",
"nuxt": "^3.4.3",
"nuxt": "^3.5.0",
"typescript": "^5.0.4"
}
}
Loading

0 comments on commit b72cdb0

Please sign in to comment.