chore: update dependencies and package manager versions across projects
Publish to NPM / Check version changes and publish (push) Failing after 10m54s

This commit is contained in:
2026-07-31 04:21:32 +07:00
parent 53e831894a
commit c6b6b93e81
20 changed files with 3375 additions and 3108 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
"url": "git+https://github.com/robonen/tools.git",
"directory": "vue/toolkit"
},
"packageManager": "pnpm@11.7.0",
"packageManager": "pnpm@11.18.0",
"engines": {
"node": ">=24.16.0"
},
@@ -28,7 +28,8 @@ function toggle(key: (typeof categories)[number]['key']) {
consent.value = { ...consent.value, [key]: !consent.value[key] };
}
const supportsCookieStore = typeof window !== 'undefined' && 'cookieStore' in window;
// Probing `globalThis` keeps this SSR-safe without a browser-only guard.
const supportsCookieStore = 'cookieStore' in globalThis;
// Show the raw cookie as the browser stores it.
const rawCookie = ref('');