Skip to content

Commit b64e67b

Browse files
authored
Merge pull request #111 from sqlitecloud/fix-rn-buffer-and-core-tests
Fix #110 rn 0.75 buffer issue with android, added new core tests
2 parents 48df5e9 + 8b99326 commit b64e67b

File tree

7 files changed

+1719
-164
lines changed

7 files changed

+1719
-164
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ npm install @sqlitecloud/drivers
1717
You also have to install Peer Dependencies
1818

1919
```bash
20-
npm install @sqlitecloud/drivers react-native-tcp-socket react-native-fast-base64
20+
npm install @sqlitecloud/drivers react-native-tcp-socket react-native-quick-base64
2121
```
2222

23-
React Native run IOS
23+
React Native run iOS
2424

2525
```bash
2626
cd ios && pod install && cd .. && npm run ios
@@ -32,7 +32,7 @@ React Native run Android (without ./ in Windows)
3232
cd android && ./gradlew clean build && cd .. && npm run android
3333
```
3434

35-
Expo run IOS
35+
Expo run iOS
3636

3737
```bash
3838
npx expo prebuild && npx expo run:ios

bun.lockb

-20.5 KB
Binary file not shown.

package-lock.json

Lines changed: 42 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqlitecloud/drivers",
3-
"version": "1.0.255",
3+
"version": "1.0.276",
44
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",
@@ -43,19 +43,19 @@
4343
},
4444
"homepage": "https://github.com/sqlitecloud/sqlitecloud-js#readme",
4545
"dependencies": {
46+
"@craftzdog/react-native-buffer": "^6.0.5",
4647
"buffer": "^6.0.3",
4748
"eventemitter3": "^5.0.1",
4849
"jest-html-reporter": "^3.10.2",
4950
"lz4js": "^0.2.0",
50-
"react-native-buffer": "^6.0.3",
5151
"react-native-url-polyfill": "^2.0.0",
5252
"socket.io": "^4.7.5",
5353
"socket.io-client": "^4.7.5",
5454
"whatwg-url": "^14.0.0"
5555
},
5656
"peerDependencies": {
57-
"react-native-tcp-socket": "^6.2.0",
58-
"react-native-fast-base64": "*"
57+
"react-native-quick-base64": "*",
58+
"react-native-tcp-socket": "^6.2.0"
5959
},
6060
"devDependencies": {
6161
"@types/bun": "^1.1.1",
@@ -101,9 +101,9 @@
101101
"react-native": {
102102
"whatwg-url": "react-native-url-polyfill",
103103
"tls": "react-native-tcp-socket",
104-
"buffer": "react-native-buffer"
104+
"buffer": "@craftzdog/react-native-buffer"
105105
},
106106
"browser": {
107107
"tls": false
108108
}
109-
}
109+
}

0 commit comments

Comments
 (0)