Skip to content

Commit b7af276

Browse files
committed
chore: up deps
1 parent 4c1c307 commit b7af276

File tree

4 files changed

+1803
-992
lines changed

4 files changed

+1803
-992
lines changed

examples/nuxt/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"preview": "nuxt preview"
88
},
99
"devDependencies": {
10-
"@pinia/colada-nuxt": "0.0.4",
11-
"@pinia/nuxt": "^0.9.0",
12-
"nuxt": "^3.15.4",
10+
"@pinia/colada-nuxt": "0.0.6",
11+
"@pinia/nuxt": "^0.10.1",
12+
"nuxt": "^3.16.0",
1313
"unplugin-vue-router": "workspace:*"
1414
},
1515
"dependencies": {
16-
"@pinia/colada": "^0.13.5",
17-
"pinia": "^2.3.1"
16+
"@pinia/colada": "^0.13.8",
17+
"pinia": "^3.0.1"
1818
}
1919
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
}
158158
},
159159
"devDependencies": {
160-
"@pinia/colada": "^0.13.5",
160+
"@pinia/colada": "^0.13.8",
161161
"@posva/prompts": "^2.4.4",
162162
"@shikijs/vitepress-twoslash": "3.0.0",
163163
"@tanstack/vue-query": "^5.66.0",
@@ -194,7 +194,7 @@
194194
"vue": "^3.5.13",
195195
"vue-router": "^4.5.0",
196196
"vue-router-mock": "^1.1.0",
197-
"vue-tsc": "^2.2.0",
197+
"vue-tsc": "^2.2.8",
198198
"vuefire": "^3.2.1",
199199
"webpack": "^5.97.1",
200200
"yorkie": "^2.0.0"

playground/src/pages/users/tq-query.[id].vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ const {
5757
} = useQuery({
5858
async queryFn({ signal }) {
5959
console.log('[TQ]useUserData', route.fullPath)
60-
signal.addEventListener('abort', (ev) => {
61-
// console.log('[TQ]useUserData aborted', ev)
60+
signal.addEventListener('abort', () => {
61+
console.log('[TQ]useUserData aborted', signal.reason)
6262
})
6363
await delay(500)
6464
if (simulateError.value) {
6565
throw new Error('Simulated Error')
6666
}
67-
signal.throwIfAborted()
67+
// signal.throwIfAborted()
6868
console.log('✅ returning data')
6969
const user = {
7070
id: route.params.id,

0 commit comments

Comments
 (0)