Skip to content

Commit

Permalink
chore(client): Add missing optional flag for peer dpeendencies (#1205)
Browse files Browse the repository at this point in the history
Adds peer dependency optional flags that are missing (also reordered to
match peer dep order).

Relevant PR: #1187
  • Loading branch information
msfstef committed Apr 29, 2024
1 parent f7aa5d9 commit ca53955
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/five-humans-ring.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"electric-sql": patch
---

Add `react-dom` and `@tauri-apps/plugin-sql` as optiomal peer dependencies.
14 changes: 10 additions & 4 deletions clients/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -272,23 +272,29 @@
"@capacitor-community/sqlite": {
"optional": true
},
"expo-sqlite": {
"@tauri-apps/plugin-sql": {
"optional": true
},
"vue": {
"expo-sqlite": {
"optional": true
},
"react": {
"optional": true
},
"react-native": {
"react-dom": {
"optional": true
},
"wa-sqlite": {
"react-native": {
"optional": true
},
"typeorm": {
"optional": true
},
"vue": {
"optional": true
},
"wa-sqlite": {
"optional": true
}
}
}

0 comments on commit ca53955

Please sign in to comment.