Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 77dd2af

Browse files
chore: upgrade dependencies
1 parent 9db6672 commit 77dd2af

File tree

3 files changed

+585
-333
lines changed

3 files changed

+585
-333
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
"turbo-query": "^1.9.0"
4444
},
4545
"devDependencies": {
46-
"@antfu/eslint-config": "^0.34.1",
47-
"@types/node": "^18.11.18",
46+
"@antfu/eslint-config": "^0.35.2",
47+
"@types/node": "^18.13.0",
4848
"@vitejs/plugin-vue": "^4.0.0",
4949
"bumpp": "^8.2.1",
50-
"eslint": "^8.32.0",
51-
"typescript": "^4.9.4",
50+
"eslint": "^8.34.0",
51+
"typescript": "^4.9.5",
5252
"unbuild": "^1.1.1",
53-
"vite": "^4.0.4",
54-
"vue": "^3.2.45",
53+
"vite": "^4.1.1",
54+
"vue": "^3.2.47",
5555
"vue-tsc": "^1.0.24"
5656
}
5757
}

playground/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script lang="ts" setup>
2-
import { Suspense, onErrorCaptured, ref } from 'vue'
2+
import { onErrorCaptured, ref } from 'vue'
33
import Post from './Post.vue'
44
import PostSuspense from './PostSuspense.vue'
55
66
const error = ref<unknown>()
77
const current = ref(1)
88
9-
onErrorCaptured((e) => {
10-
error.value = e
9+
onErrorCaptured((err) => {
10+
error.value = err
1111
return false
1212
})
1313

0 commit comments

Comments
 (0)