Skip to content

Commit a88021b

Browse files
committed
chore: upgrade to Nuxt v4 alpha
1 parent ba56920 commit a88021b

6 files changed

Lines changed: 577 additions & 239 deletions

File tree

apps/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@local/common": "workspace:*",
2323
"@local/locales": "workspace:*",
2424
"@local/tsconfig": "workspace:*",
25-
"@namesmt/utils": "^0.5.13",
25+
"@namesmt/utils": "^0.5.14",
2626
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
2727
"@scalar/hono-api-reference": "^0.9.3",
2828
"@vitest/coverage-v8": "^3.2.2",

apps/frontend/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frontend
22

3-
**frontend** is the consumer-facing website for the project, powered by [Nuxt🔥](https://nuxt.com/) (`compatibilityVersion: 4`)
3+
**frontend** is the consumer-facing website for the project, powered by [Nuxt 4](https://nuxt.com/)
44

55
## Features:
66

@@ -37,7 +37,7 @@
3737
* All the boring SEO work for Nuxt done.
3838
* [Nuxt LLMs](https://github.com/nuxtlabs/nuxt-llms)
3939

40-
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
40+
Check the [Nuxt documentation](https://nuxt.com/) to learn more.
4141

4242
## Setup
4343

apps/frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@local/common-vue": "workspace:*",
2424
"@local/locales": "workspace:*",
2525
"@local/tsconfig": "workspace:*",
26-
"@namesmt/vue-query-nuxt": "^0.3.3",
26+
"@namesmt/vue-query-nuxt": "^0.3.6",
2727
"@nuxt/eslint": "^1.4.1",
2828
"@nuxt/image": "^1.10.0",
2929
"@nuxtjs/color-mode": "^3.5.2",
@@ -46,7 +46,7 @@
4646
"h3-proxy": "^1.13.0",
4747
"hono": "^4.7.11",
4848
"idb-keyval": "^6.2.2",
49-
"nuxt": "^3.17.5",
49+
"nuxt": "^4.0.0-alpha.1",
5050
"nuxt-booster": "^3.2.9",
5151
"nuxt-svgo": "4.2.2",
5252
"ohash": "^2.0.11",

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "1.0.0",
55
"private": true,
6-
"packageManager": "pnpm@10.11.1",
6+
"packageManager": "pnpm@10.12.1",
77
"engines": {
88
"node": ">=20.13.1"
99
},
@@ -19,13 +19,13 @@
1919
},
2020
"dependencies": {
2121
"pathe": "^2.0.3",
22-
"sst": "^3.17.3",
22+
"sst": "^3.17.4",
2323
"std-env": "^3.9.0"
2424
},
2525
"devDependencies": {
2626
"@antfu/eslint-config": "^4.14.1",
2727
"@dotenvx/dotenvx": "1.11.4",
28-
"@namesmt/utils": "^0.5.13",
28+
"@namesmt/utils": "^0.5.14",
2929
"@types/aws-lambda": "^8.10.149",
3030
"@types/node": "^20.19.0",
3131
"@unocss/eslint-plugin": "^66.1.4",
@@ -40,6 +40,8 @@
4040
},
4141
"pnpm": {
4242
"overrides": {
43+
"@nuxt/kit": "4.0.0-alpha.1",
44+
"@nuxt/schema": "4.0.0-alpha.1",
4345
"is-arguments": "npm:@nolyfill/is-arguments@^1.0.44",
4446
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
4547
"is-generator-function": "npm:@nolyfill/is-generator-function@^1.0.44",
@@ -51,7 +53,8 @@
5153
"which-typed-array": "npm:@nolyfill/which-typed-array@^1.0.44"
5254
},
5355
"patchedDependencies": {
54-
"lingo.dev": "patches/lingo.dev.patch"
56+
"lingo.dev": "patches/lingo.dev.patch",
57+
"@primevue/nuxt-module": "patches/@primevue__nuxt-module.patch"
5558
}
5659
},
5760
"simple-git-hooks": {
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/dist/module.mjs b/dist/module.mjs
2+
index 8f47951e0d9ccd8691b9d6256db5d8342945c30d..10512b88d9a541c59184b34463b7d308dcb4cc35 100644
3+
--- a/dist/module.mjs
4+
+++ b/dist/module.mjs
5+
@@ -162,7 +162,7 @@ const module = defineNuxtModule({
6+
name: "@primevue/nuxt-module",
7+
configKey: "primevue",
8+
compatibility: {
9+
- nuxt: "^3.0.0"
10+
+ nuxt: ">=3.0.0"
11+
}
12+
},
13+
defaults: {

0 commit comments

Comments
 (0)