chore: upgrade deps
parent
55e0f040a3
commit
01d1a30413
18
package.json
18
package.json
|
@ -47,14 +47,14 @@
|
|||
"@tiptap/starter-kit": "2.0.0-beta.204",
|
||||
"@tiptap/suggestion": "2.0.0-beta.204",
|
||||
"@tiptap/vue-3": "2.0.0-beta.204",
|
||||
"@unocss/nuxt": "^0.49.0",
|
||||
"@vue-macros/nuxt": "^1.0.3",
|
||||
"@vueuse/core": "^9.11.1",
|
||||
"@unocss/nuxt": "^0.50.6",
|
||||
"@vue-macros/nuxt": "^1.2.3",
|
||||
"@vueuse/core": "^9.13.0",
|
||||
"@vueuse/gesture": "2.0.0-beta.1",
|
||||
"@vueuse/integrations": "^9.11.1",
|
||||
"@vueuse/math": "^9.11.1",
|
||||
"@vueuse/integrations": "^9.13.0",
|
||||
"@vueuse/math": "^9.13.0",
|
||||
"@vueuse/motion": "2.0.0-beta.12",
|
||||
"@vueuse/nuxt": "^9.11.1",
|
||||
"@vueuse/nuxt": "^9.13.0",
|
||||
"blurhash": "^2.0.4",
|
||||
"browser-fs-access": "^0.31.2",
|
||||
"chroma-js": "^2.4.2",
|
||||
|
@ -74,7 +74,7 @@
|
|||
"nuxt-security": "^0.10.1",
|
||||
"nuxt-vitest": "^0.6.4",
|
||||
"page-lifecycle": "^0.1.2",
|
||||
"pinia": "^2.0.29",
|
||||
"pinia": "^2.0.33",
|
||||
"postcss-nested": "^6.0.0",
|
||||
"rollup-plugin-node-polyfills": "^0.2.1",
|
||||
"shiki": "^0.12.1",
|
||||
|
@ -102,7 +102,7 @@
|
|||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^0.37.0",
|
||||
"@antfu/ni": "^0.19.0",
|
||||
"@types/chroma-js": "^2.1.4",
|
||||
"@types/chroma-js": "^2.4.0",
|
||||
"@types/file-saver": "^2.0.5",
|
||||
"@types/flat": "^5.0.2",
|
||||
"@types/fnando__sparkline": "^0.3.4",
|
||||
|
@ -120,7 +120,7 @@
|
|||
"prettier": "^2.8.4",
|
||||
"simple-git-hooks": "^2.8.1",
|
||||
"typescript": "^4.9.5",
|
||||
"vitest": "^0.29.3",
|
||||
"vitest": "^0.29.5",
|
||||
"vue-tsc": "^1.0.24"
|
||||
},
|
||||
"pnpm": {
|
||||
|
|
1271
pnpm-lock.yaml
1271
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
|||
import { join, resolve } from 'pathe'
|
||||
import fs from 'fs-extra'
|
||||
import { $fetch } from 'ohmyfetch'
|
||||
import { ofetch } from 'ofetch'
|
||||
import { elkTeamMembers } from '../composables/about'
|
||||
|
||||
const avatarsDir = resolve('./public/avatars/')
|
||||
|
@ -13,7 +13,7 @@ async function download(url: string, fileName: string) {
|
|||
|
||||
console.log('downloading', fileName)
|
||||
try {
|
||||
const image = await $fetch(url, { responseType: 'arrayBuffer' })
|
||||
const image = await ofetch(url, { responseType: 'arrayBuffer' })
|
||||
await fs.writeFile(fileName, Buffer.from(image))
|
||||
}
|
||||
catch (err) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Vitest Snapshot v1
|
||||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||
|
||||
exports[`content-rich > block with backticks 1`] = `"<p><pre class=\\"code-block\\">[(\`number string) (\`tag string)]</pre></p>"`;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Vitest Snapshot v1
|
||||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||
|
||||
exports[`html-parse > code frame > html 1`] = `
|
||||
"<p>Testing code block</p><p></p><p><pre><code class=\\"language-ts\\">import { useMouse, usePreferredDark } from '@vueuse/core'
|
||||
|
|
Loading…
Reference in New Issue