ueberdb2 4.2.100 → 4.2.101
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -326177,7 +326177,7 @@ class SQLiteDB extends AbstractDatabase {
|
|
|
326177
326177
|
catch (err) {
|
|
326178
326178
|
throw new Error('better-sqlite3 not found. It was removed from ueberdb\'s dependencies because it requires ' +
|
|
326179
326179
|
'compilation which fails on several systems. If you still want to use sqlite, run ' +
|
|
326180
|
-
'"
|
|
326180
|
+
'"pnpm install better-sqlite3" in your etherpad-lite ./src directory.');
|
|
326181
326181
|
}
|
|
326182
326182
|
this.db = new SQLITEDB(this.settings.filename);
|
|
326183
326183
|
this._query('CREATE TABLE IF NOT EXISTS store (key TEXT PRIMARY KEY, value TEXT)');
|
|
@@ -335370,7 +335370,7 @@ class SurrealDB extends AbstractDatabase {
|
|
|
335370
335370
|
catch (err) {
|
|
335371
335371
|
throw new Error('better-sqlite3 not found. It was removed from ueberdb\'s dependencies because it requires ' +
|
|
335372
335372
|
'compilation which fails on several systems. If you still want to use sqlite, run ' +
|
|
335373
|
-
'"
|
|
335373
|
+
'"pnpm install rusty-store-kv" in your etherpad-lite ./src directory.');
|
|
335374
335374
|
}
|
|
335375
335375
|
this.db = new RUSTY_DB.KeyValueDB(this.settings.filename);
|
|
335376
335376
|
}
|