Skip to content

Commit 3d87a94

Browse files
committed
fix(packages/expo): npmjs sigstore provenance bundle error
1 parent 2fcbd48 commit 3d87a94

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

packages/expo/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ mkdir -p artifacts/cloudsync-android-armeabi-v7a
6262
mkdir -p artifacts/cloudsync-android-x86_64
6363

6464
# Download xcframework
65-
curl -L "https://github.com/sqliteai/sqlite-sync/releases/download/${VERSION}/cloudsync-apple-xcframework-${VERSION}.zip" -o xcframework.zip
65+
curl -L "https://github.com/sqliteai/sqlite-sync-dev/releases/download/${VERSION}/cloudsync-apple-xcframework-${VERSION}.zip" -o xcframework.zip
6666
unzip xcframework.zip -d artifacts/cloudsync-apple-xcframework/
6767
rm xcframework.zip
6868

6969
# Download Android binaries
7070
for arch in arm64-v8a armeabi-v7a x86_64; do
71-
curl -L "https://github.com/sqliteai/sqlite-sync/releases/download/${VERSION}/cloudsync-android-${arch}-${VERSION}.zip" -o android-${arch}.zip
71+
curl -L "https://github.com/sqliteai/sqlite-sync-dev/releases/download/${VERSION}/cloudsync-android-${arch}-${VERSION}.zip" -o android-${arch}.zip
7272
unzip android-${arch}.zip -d artifacts/cloudsync-android-${arch}/
7373
rm android-${arch}.zip
7474
done
@@ -107,10 +107,10 @@ node generate-expo-package.js 0.9.92 ../../artifacts ./expo-package
107107

108108
```bash
109109
# In your Expo app
110-
npm install /path/to/sqlite-sync/packages/expo/expo-package
110+
npm install /path/to/sqlite-sync-dev/packages/expo/expo-package
111111

112112
# Or use file: reference in package.json
113-
# "@sqliteai/sqlite-sync-expo-dev": "file:/path/to/sqlite-sync/packages/expo/expo-package"
113+
# "@sqliteai/sqlite-sync-expo-dev": "file:/path/to/sqlite-sync-dev/packages/expo/expo-package"
114114
```
115115

116116
Update `app.json`:

packages/expo/generate-expo-package.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ function generatePackageJson(version) {
5353
license: 'SEE LICENSE IN LICENSE.md',
5454
repository: {
5555
type: 'git',
56-
url: 'https://github.com/sqliteai/sqlite-sync.git',
56+
url: 'https://github.com/sqliteai/sqlite-sync-dev.git',
5757
directory: 'packages/expo',
5858
},
59-
homepage: 'https://github.com/sqliteai/sqlite-sync#react-native--expo',
59+
homepage: 'https://github.com/sqliteai/sqlite-sync-dev#react-native--expo',
6060
bugs: {
61-
url: 'https://github.com/sqliteai/sqlite-sync/issues',
61+
url: 'https://github.com/sqliteai/sqlite-sync-dev/issues',
6262
},
6363
peerDependencies: {
6464
expo: '>=51.0.0',
@@ -379,7 +379,7 @@ console.log('SQLite Sync Version:', result.rows[0].version);
379379
380380
## Links
381381
382-
- [SQLite Sync Documentation](https://github.com/sqliteai/sqlite-sync)
382+
- [SQLite Sync Documentation](https://github.com/sqliteai/sqlite-sync-dev)
383383
- [SQLite Cloud](https://sqlitecloud.io)
384384
385385
## License

src/cloudsync.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
extern "C" {
1818
#endif
1919

20-
#define CLOUDSYNC_VERSION "0.9.92"
20+
#define CLOUDSYNC_VERSION "0.9.93"
2121
#define CLOUDSYNC_MAX_TABLENAME_LEN 512
2222

2323
#define CLOUDSYNC_VALUE_NOTSET -1

0 commit comments

Comments
 (0)