@op-engineering/op-sqlite 15.2.5 → 15.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/op-sqlite.podspec +5 -1
- package/package.json +1 -1
package/op-sqlite.podspec
CHANGED
|
@@ -77,10 +77,14 @@ if phone_version then
|
|
|
77
77
|
end
|
|
78
78
|
|
|
79
79
|
if use_sqlite_vec then
|
|
80
|
-
raise "
|
|
80
|
+
raise "sqlite-vec is not supported with phone version. It cannot load extensions."
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
+
if use_libsql and use_sqlite_vec then
|
|
85
|
+
raise "You cannot use sqlite-vec with libsql. libsql already has vector search included."
|
|
86
|
+
end
|
|
87
|
+
|
|
84
88
|
Pod::Spec.new do |s|
|
|
85
89
|
s.name = "op-sqlite"
|
|
86
90
|
s.version = package["version"]
|
package/package.json
CHANGED