@capacitor-community/sqlite 5.0.6 → 5.0.7-2
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/README.md +3 -0
- package/electron/dist/plugin.js +594 -175
- package/electron/dist/plugin.js.map +1 -1
- package/ios/Plugin/Utils/UtilsDelete.swift +506 -0
- package/ios/Plugin/Utils/UtilsSQLCipher.swift +173 -476
- package/ios/Plugin/Utils/UtilsSQLStatement.swift +450 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -171,8 +171,11 @@ npm install --save better-sqlite3-multiple-ciphers
|
|
|
171
171
|
npm install --save electron-json-storage
|
|
172
172
|
npm install --save jszip
|
|
173
173
|
npm install --save node-fetch@2.6.7
|
|
174
|
+
npm install --save crypto
|
|
175
|
+
npm install --save crypto-js
|
|
174
176
|
npm install --save-dev @types/better-sqlite3
|
|
175
177
|
npm install --save-dev @types/electron-json-storage
|
|
178
|
+
npm install --save-dev @types/crypto-js
|
|
176
179
|
```
|
|
177
180
|
- **Important**: `node-fetch` version must be `<=2.6.7`; otherwise [you'll get an error](https://github.com/capacitor-community/sqlite/issues/349 "you'll get an error ERR_REQUIRE_ESM") running the app.
|
|
178
181
|
|