mirror of
https://github.com/mat-1/matdoesdev.git
synced 2025-08-02 14:46:04 +00:00
upgrade deps
This commit is contained in:
parent
9aaf266107
commit
11ab51fd61
6 changed files with 718 additions and 820 deletions
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.0.2.cjs
|
||||
yarnPath: .yarn/releases/yarn-4.1.1.cjs
|
||||
|
|
10
package.json
10
package.json
|
@ -15,7 +15,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@img/sharp-linux-x64": "^0.33.3",
|
||||
"@sveltejs/vite-plugin-svelte": "^3.0.2",
|
||||
"@sveltejs/vite-plugin-svelte": "^3.1.0",
|
||||
"@types/cookie": "^0.6.0",
|
||||
"@types/html-minifier": "^4.0.5",
|
||||
"@types/matter-js": "^0.19.6",
|
||||
|
@ -25,13 +25,13 @@
|
|||
"eslint-config-prettier": "^9.1.0",
|
||||
"mdsvex": "^0.11.0",
|
||||
"prettier": "^3.2.5",
|
||||
"prettier-plugin-svelte": "^3.2.2",
|
||||
"prettier-plugin-svelte": "^3.2.3",
|
||||
"sharp": "^0.33.3",
|
||||
"svelte": "4.2.12",
|
||||
"svelte": "4.2.14",
|
||||
"svelte-check": "^3.6.9",
|
||||
"svelte-preprocess": "^5.1.3",
|
||||
"tslib": "^2.6.2",
|
||||
"typescript": "^5.4.4"
|
||||
"typescript": "^5.4.5"
|
||||
},
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
|
@ -52,5 +52,5 @@
|
|||
"engines": {
|
||||
"node": ">=16"
|
||||
},
|
||||
"packageManager": "yarn@4.0.2"
|
||||
"packageManager": "yarn@4.1.1"
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
const titleContent = titleEl.textContent ?? ''
|
||||
titleEl.textContent = ''
|
||||
for (let i = 0; i <= titleContent.length; i++) {
|
||||
if (!titleEl) return
|
||||
titleEl.textContent = titleContent.slice(0, i + 1)
|
||||
await new Promise((r) => setTimeout(r, delays[i]))
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue