Skip to content

Commit

Permalink
chore: upgrade Nuxt to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Mar 19, 2024
1 parent 2c54777 commit bbb6586
Show file tree
Hide file tree
Showing 10 changed files with 743 additions and 682 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.31",
"unocss": "^0.58.5",
"unocss": "^0.58.6",
"vitepress": "^1.0.0-rc.45"
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nuxt-api-party",
"type": "module",
"version": "1.1.0",
"packageManager": "[email protected].4",
"packageManager": "[email protected].5",
"description": "Securely connect to any API with a server proxy and dynamic composables",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -47,27 +47,27 @@
"release": "bumpp --commit --push --tag"
},
"dependencies": {
"@nuxt/kit": "^3.10.3",
"@nuxt/kit": "^3.11.1",
"defu": "^6.1.4",
"ofetch": "^1.3.3",
"ohash": "^1.1.3",
"pathe": "^1.1.2",
"scule": "^1.3.0",
"ufo": "^1.4.0"
"ufo": "^1.5.2"
},
"optionalDependencies": {
"openapi-typescript": "^6.7.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.1",
"@antfu/eslint-config": "^2.8.3",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/test-utils": "^3.11.0",
"@types/node": "^20.11.27",
"@nuxt/test-utils": "^3.12.0",
"@types/node": "^20.11.29",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"nuxt": "^3.10.3",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"nuxt": "^3.11.1",
"typescript": "^5.4.2",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.6"
}
}
4 changes: 4 additions & 0 deletions playground/server/api/[...].ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// TODO: Why does tsc fail in this file?
// eslint-disable-next-line ts/ban-ts-comment
// @ts-nocheck

export default defineEventHandler(() => {
throw createError({
statusCode: 404,
Expand Down
4 changes: 4 additions & 0 deletions playground/server/api/_jsonPlaceholder.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// TODO: Why does tsc fail in this file?
// eslint-disable-next-line ts/ban-ts-comment
// @ts-nocheck

// import { $jsonPlaceholder } from '#imports'
import { $jsonPlaceholder } from '#nuxt-api-party/server'

Expand Down
4 changes: 4 additions & 0 deletions playground/server/api/todos.get.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// TODO: Why does tsc fail in this file?
// eslint-disable-next-line ts/ban-ts-comment
// @ts-nocheck

export default defineEventHandler(() => [
{
userId: 1,
Expand Down
Loading

0 comments on commit bbb6586

Please sign in to comment.