Skip to content

Commit 935ccf6

Browse files
committed
Merge branch 'main' into nitro
2 parents 679ecf1 + 3e3fd30 commit 935ccf6

File tree

4 files changed

+36
-11
lines changed

4 files changed

+36
-11
lines changed

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-quick-sqlite-example",
3-
"version": "8.2.1",
3+
"version": "8.2.2",
44
"private": true,
55
"scripts": {
66
"pods": "cd ios && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install",
@@ -23,7 +23,7 @@
2323
"react": "18.3.1",
2424
"react-native": "0.75.2",
2525
"react-native-nitro-modules": "^0.13.0",
26-
"react-native-quick-sqlite": "workspace:*",
26+
"react-native-quick-sqlite": "8.2.2",
2727
"react-native-safe-area-context": "^4.11.0",
2828
"react-native-screens": "^3.34.0",
2929
"reflect-metadata": "^0.1.13",

package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-quick-sqlite-workspace",
3-
"version": "8.2.1",
3+
"version": "8.2.2",
44
"packageManager": "[email protected]",
55
"private": "true",
66
"workspaces": [
@@ -25,7 +25,7 @@
2525
"typescript": "bun --filter=\"**\" typescript",
2626
"lint": "bun --filter=\"**\" lint",
2727
"bootstrap": "bun --filter=\"**\" install && bun typescript && bun example pods",
28-
"release": "release-it",
28+
"release": "bun package prepare && release-it",
2929
"clean": "rm -rf **/tsconfig.tsbuildinfo node_modules package/node_module package/lib"
3030
},
3131
"dependencies": {
@@ -87,9 +87,16 @@
8787
}
8888
},
8989
"@release-it/bumper": {
90-
"out": {
91-
"file": "example/package.json"
92-
}
90+
"out": [
91+
{
92+
"file": "example/package.json",
93+
"path": "version"
94+
},
95+
{
96+
"file": "example/package.json",
97+
"path": "dependencies.react-native-quick-sqlite"
98+
}
99+
]
93100
}
94101
}
95102
}

package/android/build.gradle

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,26 @@ android {
9292
}
9393
}
9494
}
95+
96+
packagingOptions {
97+
excludes = [
98+
"META-INF",
99+
"META-INF/**",
100+
"**/libc++_shared.so",
101+
"**/libfbjni.so",
102+
"**/libjsi.so",
103+
"**/libfolly_json.so",
104+
"**/libfolly_runtime.so",
105+
"**/libglog.so",
106+
"**/libhermes.so",
107+
"**/libhermes-executor-debug.so",
108+
"**/libhermes_executor.so",
109+
"**/libreactnativejni.so",
110+
"**/libturbomodulejsijni.so",
111+
"**/libreact_nativemodule_core.so",
112+
"**/libjscexecutor.so"
113+
]
114+
}
95115
}
96116

97117
repositories {

package/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-quick-sqlite",
3-
"version": "8.2.1",
3+
"version": "8.2.2",
44
"description": "Fast SQLite for react-native",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -27,9 +27,7 @@
2727
"typescript": "tsc --noEmit",
2828
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
2929
"prepare": "rm -rf lib && bun typescript && bob build",
30-
"bootstrap": "bun --filter=\"**\" install && bun tsc && bun --filter=\"example\" pods",
31-
"specs": "bun typescript && bun nitro-codegen --logLevel=\"debug\"",
32-
"release": "bun prepare && release-it"
30+
"specs": "bun typescript && bun nitro-codegen --logLevel=\"debug\""
3331
},
3432
"keywords": [
3533
"react-native",

0 commit comments

Comments
 (0)