Skip to content

Commit f33c034

Browse files
chore: upgrade dependencies
1 parent 4133a23 commit f33c034

File tree

11 files changed

+2109
-2254
lines changed

11 files changed

+2109
-2254
lines changed

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"serve": "vitepress serve"
1010
},
1111
"devDependencies": {
12-
"@iconify-json/carbon": "^1.2.3",
13-
"unocss": "^0.63.6",
14-
"vitepress": "^1.4.1"
12+
"@iconify-json/carbon": "^1.2.4",
13+
"unocss": "^0.64.0",
14+
"vitepress": "^1.5.0"
1515
}
1616
}

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "0.11.3",
55
"private": true,
6-
"packageManager": "[email protected].2",
6+
"packageManager": "[email protected].3",
77
"scripts": {
88
"build": "pnpm -r --filter=./packages/** run build",
99
"dev:prepare": "pnpm -r --filter=./packages/** run dev:prepare",
@@ -19,14 +19,14 @@
1919
},
2020
"devDependencies": {
2121
"@antfu/eslint-config": "^3.8.0",
22-
"@types/node": "^20.16.15",
23-
"bumpp": "^9.7.1",
24-
"eslint": "^9.13.0",
25-
"happy-dom": "^15.7.4",
22+
"@types/node": "^22.9.0",
23+
"bumpp": "^9.8.1",
24+
"eslint": "^9.14.0",
25+
"happy-dom": "^15.11.0",
2626
"typescript": "^5.6.3",
2727
"unbuild": "^3.0.0-rc.11",
2828
"vite": "^5.4.10",
29-
"vitest": "^2.1.3",
30-
"vue-tsc": "^2.1.6"
29+
"vitest": "^2.1.4",
30+
"vue-tsc": "^2.1.10"
3131
}
3232
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@unlazy/core",
33
"type": "module",
44
"version": "0.11.3",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "Universal lazy loading library for placeholder images leveraging native browser APIs",
77
"author": "Johann Schopplich <[email protected]>",
88
"license": "MIT",

packages/core/src/thumbhash.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ function base64ToUint8Array(base64String: string) {
1515
)
1616
}
1717

18-
function base64UrlToBase64(base64url: string) {
19-
return base64url.replaceAll('-', '+').replaceAll('_', '/')
18+
function base64UrlToBase64(base64Url: string) {
19+
return base64Url.replaceAll('-', '+').replaceAll('_', '/')
2020
}

packages/nuxt/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@unlazy/nuxt",
33
"version": "0.11.3",
4-
"packageManager": "[email protected].2",
4+
"packageManager": "[email protected].3",
55
"description": "Nuxt lazy loading module for placeholder images",
66
"author": "Johann Schopplich <[email protected]>",
77
"license": "MIT",
@@ -45,16 +45,16 @@
4545
"test:types": "vue-tsc --noEmit"
4646
},
4747
"dependencies": {
48-
"@nuxt/kit": "^3.13.2",
48+
"@nuxt/kit": "^3.14.159",
4949
"defu": "^6.1.4",
5050
"unlazy": "workspace:*"
5151
},
5252
"devDependencies": {
5353
"@nuxt/module-builder": "^0.8.4",
54-
"@nuxt/schema": "^3.13.2",
55-
"@types/node": "^20.16.15",
56-
"@unocss/nuxt": "^0.63.6",
57-
"@unocss/reset": "^0.63.6",
58-
"nuxt": "^3.13.2"
54+
"@nuxt/schema": "^3.14.159",
55+
"@types/node": "^22.9.0",
56+
"@unocss/nuxt": "^0.64.0",
57+
"@unocss/reset": "^0.64.0",
58+
"nuxt": "^3.14.159"
5959
}
6060
}

packages/react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@unlazy/react",
33
"type": "module",
44
"version": "0.11.3",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "React lazy loading library for placeholder images",
77
"author": "Johann Schopplich <[email protected]>",
88
"license": "MIT",
@@ -48,13 +48,13 @@
4848
"unlazy": "workspace:*"
4949
},
5050
"devDependencies": {
51-
"@eslint-react/eslint-plugin": "^1.15.0",
52-
"@types/node": "^20.16.15",
51+
"@eslint-react/eslint-plugin": "^1.15.2",
52+
"@types/node": "^22.9.0",
5353
"@types/react": "^18.3.12",
5454
"@types/react-dom": "^18.3.1",
5555
"@vitejs/plugin-react": "^4.3.3",
5656
"eslint-plugin-react-hooks": "^5.0.0",
57-
"eslint-plugin-react-refresh": "^0.4.13",
57+
"eslint-plugin-react-refresh": "^0.4.14",
5858
"react": "^18.3.1",
5959
"react-dom": "^18.3.1"
6060
}

packages/solid/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@unlazy/solid",
33
"type": "module",
44
"version": "0.11.3",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "Solid lazy loading library for placeholder images",
77
"author": "Johann Schopplich <[email protected]>",
88
"license": "MIT",
@@ -55,10 +55,10 @@
5555
"unlazy": "workspace:*"
5656
},
5757
"devDependencies": {
58-
"@types/node": "^20.16.15",
58+
"@types/node": "^22.9.0",
5959
"eslint-plugin-solid": "^0.14.3",
6060
"solid-js": "^1.9.3",
61-
"tsup": "^8.3.0",
61+
"tsup": "^8.3.5",
6262
"tsup-preset-solid": "^2.2.0",
6363
"vite-plugin-solid": "^2.10.2"
6464
}

packages/svelte/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@unlazy/svelte",
33
"type": "module",
44
"version": "0.11.3",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "Svelte lazy loading library for placeholder images",
77
"author": "Johann Schopplich <[email protected]>",
88
"license": "MIT",
@@ -55,12 +55,12 @@
5555
"unlazy": "workspace:*"
5656
},
5757
"devDependencies": {
58-
"@sveltejs/adapter-auto": "^3.3.0",
59-
"@sveltejs/kit": "^2.7.2",
60-
"@sveltejs/package": "^2.3.6",
58+
"@sveltejs/adapter-auto": "^3.3.1",
59+
"@sveltejs/kit": "^2.8.0",
60+
"@sveltejs/package": "^2.3.7",
6161
"eslint-plugin-svelte": "^2.46.0",
62-
"svelte": "^5.0.5",
63-
"svelte-check": "^4.0.5",
64-
"tslib": "^2.8.0"
62+
"svelte": "^5.1.12",
63+
"svelte-check": "^4.0.6",
64+
"tslib": "^2.8.1"
6565
}
6666
}

packages/unlazy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "unlazy",
33
"type": "module",
44
"version": "0.11.3",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "Universal lazy loading library for placeholder images leveraging native browser APIs",
77
"author": "Johann Schopplich <[email protected]>",
88
"license": "MIT",

packages/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@unlazy/vue",
33
"type": "module",
44
"version": "0.11.3",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "Vue lazy loading library for placeholder images",
77
"author": "Johann Schopplich <[email protected]>",
88
"license": "MIT",
@@ -59,7 +59,7 @@
5959
"unlazy": "workspace:*"
6060
},
6161
"devDependencies": {
62-
"@types/node": "^20.16.15",
62+
"@types/node": "^22.9.0",
6363
"@vitejs/plugin-vue": "^5.1.4",
6464
"vue": "^3.5.12"
6565
}

0 commit comments

Comments
 (0)