Skip to content

Commit bccb255

Browse files
updated readme
1 parent 271035f commit bccb255

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

.github/workflows/build-packages.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ jobs:
3030

3131
- name: Build
3232
run: yarn build:packages
33+
34+
- name: Test
35+
run: tsc --version

packages/powersync-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"clean": "rm -rf lib tsconfig.tsbuildinfo",
1717
"watch": "tsc -b -w"
1818
},
19-
"repository": "https://github.com/journeyapps/powersync-react-native-sdk",
19+
"repository": "https://github.com/powersync-ja/powersync-react-native-sdk",
2020
"author": "JOURNEYAPPS",
2121
"license": "Apache-2.0",
2222
"bugs": {
23-
"url": "https://github.com/journeyapps/powersync-react-native-sdk/issues"
23+
"url": "https://github.com/powersync-ja/powersync-react-native-sdk/issues"
2424
},
2525
"homepage": "https://docs.powersync.co/resources/api-reference",
2626
"dependencies": {

packages/powersync-sdk-common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"files": [
1414
"lib"
1515
],
16-
"repository": "https://github.com/journeyapps/powersync-react-native-sdk",
16+
"repository": "https://github.com/powersync-ja/powersync-react-native-sdk",
1717
"bugs": {
18-
"url": "https://github.com/journeyapps/powersync-react-native-sdk/issues"
18+
"url": "https://github.com/powersync-ja/powersync-react-native-sdk/issues"
1919
},
2020
"homepage": "https://docs.powersync.co/resources/api-reference",
2121
"scripts": {

packages/powersync-sdk-common/src/client/sync/bucket/SqliteBucketStorage.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,6 @@ export class SqliteBucketStorage implements BucketStorageAdapter {
163163
*/
164164
private async updateObjectsFromBuckets(checkpoint: Checkpoint) {
165165
return this.writeTransaction(async (tx) => {
166-
/**
167-
* It's best to execute this on the same thread
168-
* https://github.com/journeyapps/powersync-sqlite-core/blob/40554dc0e71864fe74a0cb00f1e8ca4e328ff411/crates/sqlite/sqlite/sqlite3.h#L2578
169-
*/
170166
const { insertId: result } = await tx.execute('INSERT INTO powersync_operations(op, data) VALUES(?, ?)', [
171167
'sync_local',
172168
''

packages/powersync-sdk-react-native/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PowerSync SDK for React Native
22

3-
[PowerSync](https://powersync.co) is a service and set of SDKs that keeps Postgres databases in sync with on-device SQLite databases. See a summary of features [here](https://docs.powersync.co/resources/api-reference#react-native-and-expo).
3+
[PowerSync](https://powersync.co) is a service and set of SDKs that keeps Postgres databases in sync with on-device SQLite databases. See a summary of features [here](https://docs.powersync.co/client-sdk-references/react-native-and-expo).
44

55
## Beta Release
66
This React Native SDK package is currently in a beta release.

packages/powersync-sdk-react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"clean": "rm -rf lib tsconfig.tsbuildinfo",
1717
"watch": "tsc -b -w"
1818
},
19-
"repository": "https://github.com/journeyapps/powersync-react-native-sdk",
19+
"repository": "https://github.com/powersync-ja/powersync-react-native-sdk",
2020
"author": "JOURNEYAPPS",
2121
"license": "Apache-2.0",
2222
"bugs": {
23-
"url": "https://github.com/journeyapps/powersync-react-native-sdk/issues"
23+
"url": "https://github.com/powersync-ja/powersync-react-native-sdk/issues"
2424
},
2525
"homepage": "https://docs.powersync.co/",
2626
"peerDependencies": {

0 commit comments

Comments
 (0)