@live-change/db-web 0.9.35 → 0.9.37

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.
Files changed (2) hide show
  1. package/lib/Server.js +1 -0
  2. package/package.json +7 -7
package/lib/Server.js CHANGED
@@ -60,6 +60,7 @@ class Server {
60
60
  this.databaseStores = new Map()
61
61
 
62
62
  this.databasesListObservable = new ReactiveDao.ObservableList([])
63
+ this.databasesListObservable.observe(() => {}) // prevent dispose and clear
63
64
 
64
65
  this.backends = {}
65
66
  if(config.backend && !this.backends.default) { // backward compatibility
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db-web",
3
- "version": "0.9.35",
3
+ "version": "0.9.37",
4
4
  "author": {
5
5
  "email": "michal@laszczewski.com",
6
6
  "name": "Michał Łaszczewski",
@@ -29,12 +29,12 @@
29
29
  },
30
30
  "type": "module",
31
31
  "dependencies": {
32
- "@live-change/dao": "^0.9.35",
33
- "@live-change/db": "^0.9.35",
34
- "@live-change/db-store-indexeddb": "^0.9.35",
35
- "@live-change/db-store-localstorage": "^0.9.35",
36
- "@live-change/db-store-rbtree": "^0.9.35",
32
+ "@live-change/dao": "^0.9.37",
33
+ "@live-change/db": "^0.9.37",
34
+ "@live-change/db-store-indexeddb": "^0.9.37",
35
+ "@live-change/db-store-localstorage": "^0.9.37",
36
+ "@live-change/db-store-rbtree": "^0.9.37",
37
37
  "debug": "^4.3.4"
38
38
  },
39
- "gitHead": "abe67aa58ccf8246b8b9fde832287b5305480b91"
39
+ "gitHead": "b9c3b08a3e3b9d328d17f806d6a9f5684e63b878"
40
40
  }