Skip to content

Commit 8e58b5b

Browse files
authored
chore: Updating a lot of dependencies (#322)
<!-- Thank you for your pull request. Please provide a description above and review the requirements below. Bug fixes and new features should include tests and possibly benchmarks. Contributors guide: https://github.com/fastify/fastify/blob/main/CONTRIBUTING.md By making a contribution to this project, I certify that: * (a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or * (b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or * (c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. * (d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved. --> #### Checklist - [ ] run `npm run test && npm run benchmark --if-present` - [ ] tests and/or benchmarks are included - [ ] documentation is changed or added - [ ] commit message and code follows the [Developer's Certification of Origin](https://github.com/fastify/.github/blob/main/CONTRIBUTING.md#developers-certificate-of-origin-11) and the [Code of conduct](https://github.com/fastify/.github/blob/main/CODE_OF_CONDUCT.md)
1 parent 0ff1e89 commit 8e58b5b

File tree

12 files changed

+998
-883
lines changed

12 files changed

+998
-883
lines changed

packages/fastify-htmx/package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
{
2-
"scripts": {
3-
"lint": "biome check --apply ."
2+
"name": "@fastify/htmx",
3+
"version": "0.4.1",
4+
"description": "The official @fastify/vite renderer for HTMX",
5+
"keywords": [
6+
"fastify",
7+
"vite",
8+
"htmx"
9+
],
10+
"homepage": "https://github.com/fastify/fastify-vite#readme",
11+
"bugs": {
12+
"url": "https://github.com/fastify/fastify-vite/issues"
13+
},
14+
"license": "MIT",
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/fastify/fastify-vite.git"
418
},
519
"type": "module",
620
"main": "index.js",
7-
"name": "@fastify/htmx",
8-
"description": "The official @fastify/vite renderer for HTMX",
9-
"version": "0.4.1",
21+
"exports": {
22+
".": "./index.js",
23+
"./plugin": "./plugin.cjs"
24+
},
1025
"files": [
1126
"virtual/layouts/default.jsx",
1227
"virtual/client.js",
@@ -16,34 +31,19 @@
1631
"index.js",
1732
"plugin.cjs"
1833
],
19-
"license": "MIT",
20-
"exports": {
21-
".": "./index.js",
22-
"./plugin": "./plugin.cjs"
34+
"scripts": {
35+
"lint": "biome check --apply ."
2336
},
2437
"dependencies": {
2538
"@kitajs/html": "^4.2.9",
2639
"@rollup/plugin-inject": "^5.0.5",
2740
"htmx.org": "^2.0.6",
2841
"mlly": "^1.7.4"
2942
},
30-
"publishConfig": {
31-
"access": "public"
32-
},
3343
"devDependencies": {
3444
"@biomejs/biome": "^1.9.4"
3545
},
36-
"repository": {
37-
"type": "git",
38-
"url": "git+https://github.com/fastify/fastify-vite.git"
39-
},
40-
"keywords": [
41-
"fastify",
42-
"vite",
43-
"htmx"
44-
],
45-
"bugs": {
46-
"url": "https://github.com/fastify/fastify-vite/issues"
47-
},
48-
"homepage": "https://github.com/fastify/fastify-vite#readme"
46+
"publishConfig": {
47+
"access": "public"
48+
}
4949
}
Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
{
2-
"scripts": {
3-
"lint": "biome check --apply-unsafe ."
2+
"name": "@fastify/react",
3+
"version": "1.1.1",
4+
"description": "The official @fastify/vite renderer for React",
5+
"keywords": [
6+
"fastify",
7+
"vite",
8+
"react"
9+
],
10+
"homepage": "https://fastify.github.io/fastify-vite/react/",
11+
"bugs": {
12+
"url": "https://github.com/fastify/fastify-vite/issues"
13+
},
14+
"license": "MIT",
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/fastify/fastify-vite.git"
418
},
519
"type": "module",
620
"main": "index.js",
7-
"name": "@fastify/react",
8-
"description": "The official @fastify/vite renderer for React",
9-
"version": "1.1.1",
21+
"exports": {
22+
".": "./index.js",
23+
"./plugin": "./plugin/index.js",
24+
"./client": "./client.js",
25+
"./server": "./server.js"
26+
},
1027
"files": [
1128
"plugin/index.js",
1229
"plugin/parsers.js",
@@ -42,27 +59,23 @@
4259
"server.js",
4360
"templating.js"
4461
],
45-
"license": "MIT",
46-
"exports": {
47-
".": "./index.js",
48-
"./plugin": "./plugin/index.js",
49-
"./client": "./client.js",
50-
"./server": "./server.js"
62+
"scripts": {
63+
"lint": "biome check --apply-unsafe ."
5164
},
5265
"dependencies": {
5366
"@fastify/vite": "workspace:^",
5467
"@unhead/react": "^2.0.8",
5568
"acorn": "^8.14.1",
5669
"acorn-strip-function": "^1.2.0",
5770
"acorn-walk": "^8.3.4",
58-
"devalue": "latest",
71+
"devalue": "catalog:",
5972
"history": "latest",
60-
"html-rewriter-wasm": "^0.4.1",
73+
"html-rewriter-wasm": "catalog:",
6174
"minipass": "latest",
6275
"mlly": "^1.7.4",
63-
"react": "^19.2.3",
64-
"react-dom": "^19.2.3",
65-
"react-router": "^7.5.0",
76+
"react": "catalog:react",
77+
"react-dom": "catalog:react",
78+
"react-router": "catalog:react",
6679
"valtio": "latest",
6780
"youch": "^3.3.4"
6881
},
@@ -71,18 +84,5 @@
7184
},
7285
"publishConfig": {
7386
"access": "public"
74-
},
75-
"repository": {
76-
"type": "git",
77-
"url": "git+https://github.com/fastify/fastify-vite.git"
78-
},
79-
"keywords": [
80-
"fastify",
81-
"vite",
82-
"react"
83-
],
84-
"bugs": {
85-
"url": "https://github.com/fastify/fastify-vite/issues"
86-
},
87-
"homepage": "https://fastify.github.io/fastify-vite/react/"
87+
}
8888
}

packages/fastify-vite/package.json

Lines changed: 41 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
11
{
2-
"scripts": {
3-
"test": "vitest run --no-file-parallelism",
4-
"test:type": "vitest --ui --typecheck",
5-
"lint": "biome check --write ."
6-
},
2+
"name": "@fastify/vite",
3+
"version": "8.2.1",
4+
"description": "Official Fastify plugin for Vite integration.",
5+
"keywords": [
6+
"fastify",
7+
"vite"
8+
],
9+
"homepage": "https://fastify.github.io/fastify-vite/",
710
"bugs": {
811
"url": "https://github.com/fastify/fastify-vite/issues"
912
},
10-
"deprecated": false,
11-
"description": "Official Fastify plugin for Vite integration.",
13+
"license": "MIT",
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/fastify/fastify-vite.git"
17+
},
18+
"main": "index.js",
19+
"types": "./types/index.d.ts",
20+
"typings": "./types/index.d.ts",
21+
"exports": {
22+
".": {
23+
"types": "./types/index.d.ts",
24+
"import": "./index.js",
25+
"require": "./index.js"
26+
},
27+
"./utils": "./utils.js",
28+
"./plugin": "./plugin.mjs"
29+
},
1230
"files": [
1331
"config.js",
1432
"html.js",
@@ -21,54 +39,35 @@
2139
"types/index.d.ts",
2240
"utils.js"
2341
],
24-
"exports": {
25-
".": {
26-
"types": "./types/index.d.ts",
27-
"import": "./index.js",
28-
"require": "./index.js"
29-
},
30-
"./utils": "./utils.js",
31-
"./plugin": "./plugin.mjs"
32-
},
33-
"homepage": "https://fastify.github.io/fastify-vite/",
34-
"license": "MIT",
35-
"main": "index.js",
36-
"name": "@fastify/vite",
37-
"types": "./types/index.d.ts",
38-
"typings": "./types/index.d.ts",
39-
"repository": {
40-
"type": "git",
41-
"url": "git+https://github.com/fastify/fastify-vite.git"
42-
},
43-
"publishConfig": {
44-
"access": "public"
42+
"scripts": {
43+
"test": "vitest run --no-file-parallelism",
44+
"test:type": "vitest --ui --typecheck",
45+
"lint": "biome check --write ."
4546
},
46-
"version": "8.2.1",
4747
"dependencies": {
48-
"@fastify/deepmerge": "^3.0.0",
48+
"@fastify/deepmerge": "^3.1.0",
4949
"@fastify/middie": "^9.0.3",
50-
"@fastify/static": "^8.1.1",
51-
"fastify-plugin": "^5.0.1",
52-
"find-cache-dir": "^5.0.0",
53-
"fs-extra": "^11.3.0",
54-
"html-rewriter-wasm": "^0.4.1",
50+
"@fastify/static": "^9.0.0",
51+
"fastify-plugin": "^5.1.0",
52+
"fs-extra": "^11.3.3",
53+
"html-rewriter-wasm": "catalog:",
5554
"klaw": "^4.1.0",
5655
"package-directory": "^8.1.0"
5756
},
5857
"devDependencies": {
5958
"@biomejs/biome": "^1.9.4",
60-
"@types/node": "^22.13.17",
61-
"@vitest/ui": "catalog:",
59+
"@types/node": "^22.19.3",
60+
"@vitest/ui": "4.0.16",
6261
"fastify": "catalog:",
63-
"typescript": "~5.8.2",
62+
"typescript": "catalog:",
6463
"vitest": "catalog:"
6564
},
6665
"peerDependencies": {
6766
"fastify": ">=5",
6867
"vite": ">=6"
6968
},
70-
"keywords": [
71-
"fastify",
72-
"vite"
73-
]
69+
"publishConfig": {
70+
"access": "public"
71+
},
72+
"deprecated": false
7473
}

packages/fastify-vue/package.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
11
{
2-
"type": "module",
3-
"main": "index.js",
42
"name": "@fastify/vue",
5-
"description": "The official @fastify/vite renderer for Vue",
63
"version": "1.1.2",
4+
"description": "The official @fastify/vite renderer for Vue",
5+
"keywords": [
6+
"fastify",
7+
"vite",
8+
"vue"
9+
],
10+
"homepage": "https://github.com/fastify/fastify-vite/tree/main/packages/fastify-vue",
11+
"bugs": {
12+
"url": "https://github.com/fastify/fastify-vite/issues"
13+
},
14+
"license": "MIT",
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/fastify/fastify-vite.git"
18+
},
19+
"type": "module",
20+
"main": "index.js",
21+
"exports": {
22+
".": "./index.js",
23+
"./plugin": "./plugin/index.js",
24+
"./client": "./client.js",
25+
"./server": "./server.js"
26+
},
727
"files": [
828
"plugin/index.js",
929
"plugin/parsers.js",
@@ -38,46 +58,26 @@
3858
"client.js",
3959
"server.js"
4060
],
41-
"license": "MIT",
42-
"exports": {
43-
".": "./index.js",
44-
"./plugin": "./plugin/index.js",
45-
"./client": "./client.js",
46-
"./server": "./server.js"
47-
},
4861
"dependencies": {
4962
"@fastify/vite": "workspace:^",
5063
"@unhead/vue": "^2.0.5",
5164
"acorn": "^8.12.1",
5265
"acorn-walk": "^8.3.4",
53-
"devalue": "latest",
54-
"html-rewriter-wasm": "^0.4.1",
66+
"devalue": "catalog:",
67+
"html-rewriter-wasm": "catalog:",
5568
"mlly": "^1.5.0",
56-
"vue": "^3.5.8",
57-
"vue-router": "^4.4.5",
69+
"vue": "catalog:vue",
70+
"vue-router": "catalog:vue",
5871
"youch": "^3.3.4"
5972
},
6073
"devDependencies": {
61-
"@vitejs/plugin-vue": "latest",
62-
"oxlint": "^0.16.8"
74+
"@vitejs/plugin-vue": "catalog:vue",
75+
"oxlint": "catalog:"
6376
},
6477
"optionalDependencies": {
6578
"vite": "catalog:"
6679
},
6780
"publishConfig": {
6881
"access": "public"
69-
},
70-
"repository": {
71-
"type": "git",
72-
"url": "git+https://github.com/fastify/fastify-vite.git"
73-
},
74-
"keywords": [
75-
"fastify",
76-
"vite",
77-
"vue"
78-
],
79-
"bugs": {
80-
"url": "https://github.com/fastify/fastify-vite/issues"
81-
},
82-
"homepage": "https://github.com/fastify/fastify-vite/tree/main/packages/fastify-vue"
82+
}
8383
}

0 commit comments

Comments
 (0)