Skip to content

Commit

Permalink
Fix installation error when Valibot is missing #255
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-hiller committed Oct 7, 2024
1 parent 66870e0 commit fa2d7ef
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 33 deletions.
4 changes: 4 additions & 0 deletions packages/preact/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## vX.X.X (Month DD, YYYY)

- Fix installation error when Valibot dependency is missing (issue #255)

## v0.11.0 (October 03, 2024)

- Upgrade Valibot peer dependency to v1.0.0
Expand Down
12 changes: 4 additions & 8 deletions packages/preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
"format.check": "prettier --check \"./src\"",
"lint": "eslint \"./src/**/*.ts*\" && tsc --noEmit"
},
"dependencies": {
"valibot": "1.0.0-beta.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.9.0",
"@preact/signals": "^1.3.0",
Expand All @@ -56,18 +59,11 @@
"eslint-config-preact": "^1.4.0",
"preact": "^10.23.2",
"typescript": "^5.5.4",
"valibot": "1.0.0-beta.0",
"vite": "^5.4.2",
"zod": "^3.23.8"
},
"peerDependencies": {
"@preact/signals": "^1.0.0",
"preact": "^10.0.0",
"valibot": "^1.0.0"
},
"peerDependenciesMeta": {
"valibot": {
"optional": true
}
"preact": "^10.0.0"
}
}
4 changes: 4 additions & 0 deletions packages/qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## vX.X.X (Month DD, YYYY)

- Fix installation error when Valibot dependency is missing (issue #255)

## v0.28.0 (October 03, 2024)

- Upgrade Valibot peer dependency to v1.0.0
Expand Down
12 changes: 3 additions & 9 deletions packages/qwik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"lint": "eslint \"./src/**/*.ts*\" && tsc --noEmit"
},
"dependencies": {
"decode-formdata": "^0.8.0"
"decode-formdata": "^0.8.0",
"valibot": "1.0.0-beta.0"
},
"devDependencies": {
"@builder.io/qwik": "^1.9.0",
Expand All @@ -60,18 +61,11 @@
"eslint": "8.57.0",
"eslint-plugin-qwik": "^1.9.0",
"typescript": "^5.6.2",
"valibot": "1.0.0-beta.0",
"vite": "^5.4.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"@builder.io/qwik": "^1.9.0 | ^2.0.0",
"@builder.io/qwik-city": "^1.9.0 | ^2.0.0",
"valibot": "^1.0.0"
},
"peerDependenciesMeta": {
"valibot": {
"optional": true
}
"@builder.io/qwik-city": "^1.9.0 | ^2.0.0"
}
}
4 changes: 4 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## vX.X.X (Month DD, YYYY)

- Fix installation error when Valibot dependency is missing (issue #255)

## v0.10.0 (October 03, 2024)

- Upgrade Valibot peer dependency to v1.0.0
Expand Down
12 changes: 4 additions & 8 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
"format.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit"
},
"dependencies": {
"valibot": "1.0.0-beta.0"
},
"devDependencies": {
"@preact/signals-react": "^2.2.0",
"@types/eslint": "^8.56.12",
Expand All @@ -58,18 +61,11 @@
"eslint-plugin-react-hooks": "^4.6.2",
"react": "^18.3.1",
"typescript": "^5.5.4",
"valibot": "1.0.0-beta.0",
"vite": "^5.4.2",
"zod": "^3.23.8"
},
"peerDependencies": {
"@preact/signals-react": "^1.0.0",
"react": "^18.0.0",
"valibot": "^1.0.0"
},
"peerDependenciesMeta": {
"valibot": {
"optional": true
}
"react": "^18.0.0"
}
}
4 changes: 4 additions & 0 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## vX.X.X (Month DD, YYYY)

- Fix installation error when Valibot dependency is missing (issue #255)

## v0.24.0 (October 03, 2024)

- Upgrade Valibot peer dependency to v1.0.0
Expand Down
12 changes: 4 additions & 8 deletions packages/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
"format.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit"
},
"dependencies": {
"valibot": "1.0.0-beta.0"
},
"devDependencies": {
"@types/eslint": "^8.56.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
Expand All @@ -62,16 +65,9 @@
"rollup-preset-solid": "^2.0.1",
"solid-js": "^1.8.22",
"typescript": "^5.5.4",
"valibot": "1.0.0-beta.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"solid-js": "^1.3.1",
"valibot": "^1.0.0"
},
"peerDependenciesMeta": {
"valibot": {
"optional": true
}
"solid-js": "^1.3.1"
}
}

0 comments on commit fa2d7ef

Please sign in to comment.