@okint-digital/okint-rn-storage 0.8.0 → 0.8.1
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/package.json +1 -1
- package/react-native.config.js +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okint-digital/okint-rn-storage",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Vanilla, pluggable React Native storage — one API over swappable backends: hardware Keystore/Keychain (secure), AES-encrypted blobs (encrypted), SQLite, SharedPreferences/UserDefaults (async), a synchronous fast store, or in-memory.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
package/react-native.config.js
CHANGED
|
@@ -7,9 +7,10 @@ module.exports = {
|
|
|
7
7
|
packageImportPath: 'import com.okint.rnstorage.OkintRnStoragePackage;',
|
|
8
8
|
packageInstance: 'new OkintRnStoragePackage()',
|
|
9
9
|
},
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
// iOS: no entry needed. The CLI auto-discovers our single root podspec
|
|
11
|
+
// (okint-rn-storage.podspec). An explicit `podspecPath` here is rejected
|
|
12
|
+
// by the RN CLI dependency-config schema (it's a project-config key, not
|
|
13
|
+
// a dependency-config one) and emits an "invalid configuration" warning.
|
|
13
14
|
},
|
|
14
15
|
},
|
|
15
16
|
};
|