Skip to content

Commit e091492

Browse files
authored
chore(deps): motion-v 2, @nuxtjs/seo 5, vue-router 5, CLI majors, OG image v6 (#720)
1 parent b078d5c commit e091492

19 files changed

Lines changed: 1235 additions & 277 deletions

File tree

.github/workflows/continuous-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v6
1212

1313
- name: Check if there are changes
14-
uses: dorny/paths-filter@v3
14+
uses: dorny/paths-filter@v4
1515
id: changes
1616
with:
1717
filters: |

.github/workflows/label-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
pull-requests: write
1616
steps:
17-
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
17+
- uses: actions/github-script@v9.0.0
1818
env:
1919
PULL_REQUEST_TITLE: ${{ github.event.pull_request.title }}
2020
with:

apps/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dotenv": "^17.4.1",
2626
"iron-webcrypto": "^2.0.0",
2727
"motion-plus-vue": "^1.8.1",
28-
"motion-v": "^1.10.3",
28+
"motion-v": "^2.2.1",
2929
"nuxt": "4.4.2",
3030
"vue": "^3.5.32",
3131
"vue-sonner": "^2.0.9",
File renamed without changes.

apps/lp/app/pages/about.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const title = 'About Shelve'
1111
const description = 'Learn about Shelve\'s origins, the mission to simplify secrets management, and the vision for a unified, open-source developer workspace.'
1212
const titleTemplate = ref('%s - Our Story, Mission & Vision')
1313
14-
defineOgImage({ url: ogImage })
14+
useSeoMeta({ ogImage: ogImage })
1515
1616
useSeoMeta({
1717
title,

apps/lp/app/pages/blog/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if (!posts.value) {
1818
const { title, description } = page.value
1919
const titleTemplate = ref('%s - Updates, Insights & Building in Public')
2020
21-
defineOgImage({ url: ogImage })
21+
useSeoMeta({ ogImage: ogImage })
2222
2323
useSeoMeta({
2424
title,

apps/lp/app/pages/brand.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (!page.value) {
1111
const { title, description } = page.value
1212
const titleTemplate = ref('%s')
1313
14-
defineOgImage({ url: ogImage })
14+
useSeoMeta({ ogImage: ogImage })
1515
1616
useSeoMeta({
1717
title,

apps/lp/app/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ useSeoMeta({
1515
ogTitle: titleTemplate.value?.includes('%s') ? titleTemplate.value.replace('%s', title) : title
1616
})
1717
18-
defineOgImage({ url: ogImage })
18+
useSeoMeta({ ogImage: ogImage })
1919
</script>
2020

2121
<template>

apps/lp/docus-i18n.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/** Declared for `tsc` when resolving docus composables (Nuxt auto-imports at runtime). */
2+
declare function useLocalePath(): (to: string) => string
3+
declare function useSwitchLocalePath(): (locale: string) => string

apps/lp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"@shelve/base": "workspace:*",
2020
"docus": "https://pkg.pr.new/docus@061666a",
2121
"@number-flow/vue": "^0.5.0",
22-
"@nuxtjs/seo": "^3.4.0",
22+
"@nuxtjs/seo": "^5.1.3",
2323
"better-sqlite3": "^12.8.0",
2424
"nuxt-build-cache": "^0.1.1",
2525
"nuxt-llms": "^0.2.0",
2626
"tailwindcss": "^4.2.2",
27-
"vue-router": "^4.6.4"
27+
"vue-router": "^5.0.0"
2828
},
2929
"devDependencies": {
3030
"@shelve/cli": "^4.1.7"

0 commit comments

Comments
 (0)