Skip to content

Commit fa2d7ef

Browse files
committed
Fix installation error when Valibot is missing #255
1 parent 66870e0 commit fa2d7ef

File tree

8 files changed

+31
-33
lines changed

8 files changed

+31
-33
lines changed

packages/preact/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the library will be documented in this file.
44

5+
## vX.X.X (Month DD, YYYY)
6+
7+
- Fix installation error when Valibot dependency is missing (issue #255)
8+
59
## v0.11.0 (October 03, 2024)
610

711
- Upgrade Valibot peer dependency to v1.0.0

packages/preact/package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
4646
"format.check": "prettier --check \"./src\"",
4747
"lint": "eslint \"./src/**/*.ts*\" && tsc --noEmit"
4848
},
49+
"dependencies": {
50+
"valibot": "1.0.0-beta.0"
51+
},
4952
"devDependencies": {
5053
"@preact/preset-vite": "^2.9.0",
5154
"@preact/signals": "^1.3.0",
@@ -56,18 +59,11 @@
5659
"eslint-config-preact": "^1.4.0",
5760
"preact": "^10.23.2",
5861
"typescript": "^5.5.4",
59-
"valibot": "1.0.0-beta.0",
6062
"vite": "^5.4.2",
6163
"zod": "^3.23.8"
6264
},
6365
"peerDependencies": {
6466
"@preact/signals": "^1.0.0",
65-
"preact": "^10.0.0",
66-
"valibot": "^1.0.0"
67-
},
68-
"peerDependenciesMeta": {
69-
"valibot": {
70-
"optional": true
71-
}
67+
"preact": "^10.0.0"
7268
}
7369
}

packages/qwik/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the library will be documented in this file.
44

5+
## vX.X.X (Month DD, YYYY)
6+
7+
- Fix installation error when Valibot dependency is missing (issue #255)
8+
59
## v0.28.0 (October 03, 2024)
610

711
- Upgrade Valibot peer dependency to v1.0.0

packages/qwik/package.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
"lint": "eslint \"./src/**/*.ts*\" && tsc --noEmit"
4848
},
4949
"dependencies": {
50-
"decode-formdata": "^0.8.0"
50+
"decode-formdata": "^0.8.0",
51+
"valibot": "1.0.0-beta.0"
5152
},
5253
"devDependencies": {
5354
"@builder.io/qwik": "^1.9.0",
@@ -60,18 +61,11 @@
6061
"eslint": "8.57.0",
6162
"eslint-plugin-qwik": "^1.9.0",
6263
"typescript": "^5.6.2",
63-
"valibot": "1.0.0-beta.0",
6464
"vite": "^5.4.8",
6565
"zod": "^3.23.8"
6666
},
6767
"peerDependencies": {
6868
"@builder.io/qwik": "^1.9.0 | ^2.0.0",
69-
"@builder.io/qwik-city": "^1.9.0 | ^2.0.0",
70-
"valibot": "^1.0.0"
71-
},
72-
"peerDependenciesMeta": {
73-
"valibot": {
74-
"optional": true
75-
}
69+
"@builder.io/qwik-city": "^1.9.0 | ^2.0.0"
7670
}
7771
}

packages/react/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the library will be documented in this file.
44

5+
## vX.X.X (Month DD, YYYY)
6+
7+
- Fix installation error when Valibot dependency is missing (issue #255)
8+
59
## v0.10.0 (October 03, 2024)
610

711
- Upgrade Valibot peer dependency to v1.0.0

packages/react/package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
4646
"format.check": "prettier --check .",
4747
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit"
4848
},
49+
"dependencies": {
50+
"valibot": "1.0.0-beta.0"
51+
},
4952
"devDependencies": {
5053
"@preact/signals-react": "^2.2.0",
5154
"@types/eslint": "^8.56.12",
@@ -58,18 +61,11 @@
5861
"eslint-plugin-react-hooks": "^4.6.2",
5962
"react": "^18.3.1",
6063
"typescript": "^5.5.4",
61-
"valibot": "1.0.0-beta.0",
6264
"vite": "^5.4.2",
6365
"zod": "^3.23.8"
6466
},
6567
"peerDependencies": {
6668
"@preact/signals-react": "^1.0.0",
67-
"react": "^18.0.0",
68-
"valibot": "^1.0.0"
69-
},
70-
"peerDependenciesMeta": {
71-
"valibot": {
72-
"optional": true
73-
}
69+
"react": "^18.0.0"
7470
}
7571
}

packages/solid/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the library will be documented in this file.
44

5+
## vX.X.X (Month DD, YYYY)
6+
7+
- Fix installation error when Valibot dependency is missing (issue #255)
8+
59
## v0.24.0 (October 03, 2024)
610

711
- Upgrade Valibot peer dependency to v1.0.0

packages/solid/package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
"format.check": "prettier --check .",
5353
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit"
5454
},
55+
"dependencies": {
56+
"valibot": "1.0.0-beta.0"
57+
},
5558
"devDependencies": {
5659
"@types/eslint": "^8.56.12",
5760
"@typescript-eslint/eslint-plugin": "^7.18.0",
@@ -62,16 +65,9 @@
6265
"rollup-preset-solid": "^2.0.1",
6366
"solid-js": "^1.8.22",
6467
"typescript": "^5.5.4",
65-
"valibot": "1.0.0-beta.0",
6668
"zod": "^3.23.8"
6769
},
6870
"peerDependencies": {
69-
"solid-js": "^1.3.1",
70-
"valibot": "^1.0.0"
71-
},
72-
"peerDependenciesMeta": {
73-
"valibot": {
74-
"optional": true
75-
}
71+
"solid-js": "^1.3.1"
7672
}
7773
}

0 commit comments

Comments
 (0)