File tree 3 files changed +6
-21
lines changed
3 files changed +6
-21
lines changed Original file line number Diff line number Diff line change 1
1
import AbstractDatabase from "../lib/AbstractDatabase" ;
2
+ import { KeyValueDB } from 'rusty-store-kv'
2
3
3
4
export default class Rusty_db extends AbstractDatabase {
4
5
db : any | null | undefined
@@ -33,16 +34,8 @@ export default class Rusty_db extends AbstractDatabase {
33
34
}
34
35
35
36
async init ( ) {
36
- let RUSTY_DB
37
- try {
38
- RUSTY_DB = await import ( 'rusty-store-kv' ) ;
39
- } catch ( err ) {
40
- throw new Error (
41
- 'rusty-store-kv not found. It was removed from ueberdb\'s dependencies because it requires ' +
42
- 'compilation which fails on several systems. If you still want to use rusty store kv, run ' +
43
- '"pnpm install rusty-store-kv" in your etherpad-lite ./src directory.' ) ;
44
- }
45
- this . db = new RUSTY_DB . KeyValueDB ( this . settings . filename ! ) ;
37
+
38
+ this . db = new KeyValueDB ( this . settings . filename ! ) ;
46
39
}
47
40
48
41
close ( ) {
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
import { BulkObject } from "./cassandra_db" ;
3
3
import AbstractDatabase , { Settings } from "../lib/AbstractDatabase" ;
4
+ import { SQLite } from "rusty-store-kv" ;
4
5
5
6
/**
6
7
* 2011 Peter 'Pita' Martischka
@@ -43,16 +44,7 @@ export default class SQLiteDB extends AbstractDatabase {
43
44
}
44
45
45
46
init ( callback : Function ) {
46
- let SQLITEDB
47
- try {
48
- SQLITEDB = require ( 'rusty-store-kv' ) ;
49
- } catch ( err ) {
50
- throw new Error (
51
- 'rusty-store-kv not found. It was removed from ueberdb\'s dependencies because it requires ' +
52
- 'compilation which fails on several systems. If you still want to use sqlite, run ' +
53
- '"pnpm install rusty-store-kv" in your etherpad-lite ./src directory.' ) ;
54
- }
55
- this . db = new SQLITEDB . SQLite ( this . settings . filename as string )
47
+ this . db = new SQLite ( this . settings . filename as string )
56
48
callback ( ) ;
57
49
}
58
50
Original file line number Diff line number Diff line change 65
65
"url" : " https://github.com/ether/ueberDB.git"
66
66
},
67
67
"main" : " ./dist/index.js" ,
68
- "version" : " 4.2.104 " ,
68
+ "version" : " 5.0.0 " ,
69
69
"bugs" : {
70
70
"url" : " https://github.com/ether/ueberDB/issues"
71
71
},
You can’t perform that action at this time.
0 commit comments