@live-change/dao-vue3 0.4.0 → 0.4.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.
@@ -47,7 +47,7 @@ class Bucket {
47
47
 
48
48
  async load() {
49
49
  this.path = this.pathFunction(this.range)
50
- this.dataPromise = live(this.api(), this.path, fun => onDispose.push(fun))
50
+ this.dataPromise = live(this.api(), this.path, fun => this.onDispose.push(fun))
51
51
  this.dataPromise.then(data => {
52
52
  this.liveData.value = data
53
53
  })
@@ -134,7 +134,8 @@ class RangeBuckets {
134
134
  }
135
135
 
136
136
  async wait() {
137
- //console.log("WAIT FOR BUCKETS", this.buckets.length)
137
+ // console.log("WAIT FOR BUCKETS", this.buckets.length)
138
+ // console.log("BUCKET", this.buckets)
138
139
  await Promise.all(this.buckets.map(bucket => bucket.promise)).then(loaded => this)
139
140
  }
140
141
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/dao-vue3",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "author": {
5
5
  "email": "m8@em8.pl",
6
6
  "name": "Michał Łaszczewski",
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/live-change/live-change-dao/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@live-change/dao": "^0.4.0"
13
+ "@live-change/dao": "^0.4.1"
14
14
  },
15
15
  "description": "Vue.js integration for live-change dao",
16
16
  "directories": {},
@@ -32,5 +32,5 @@
32
32
  "scripts": {
33
33
  "compileTests": "webpack test/*.js tests-bundle.js"
34
34
  },
35
- "gitHead": "106431c736de8c92ba07cbba1bb85aac4925a93f"
35
+ "gitHead": "ea2d38a0401c1405bb3ca011a43a50dc7ada6cf6"
36
36
  }